-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
executable file
·79 lines (79 loc) · 2.33 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "@stellar/design-system",
"version": "3.0.0",
"author": "Stellar Development Foundation <[email protected]>",
"description": "Components for Stellar Development Foundation’s design system",
"license": "Apache-2.0",
"repository": {
"url": "[email protected]:stellar/stellar-design-system.git",
"type": "git"
},
"main": "build/index.js",
"module": "build/index.esm.js",
"files": [
"build"
],
"types": "build/index.d.ts",
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"build:prod": "yarn clean && rollup -c",
"build:tsc": "tsc -p tsconfig.json",
"build": "yarn build:prod && yarn build:tsc",
"watch:tsc": "tsc -w -p tsconfig.json",
"watch:dev": "rollup -c",
"clean": "rimraf ./build",
"start": "run-p clean watch:tsc watch:dev",
"lint-tsc": "tsc --noEmit",
"typedoc": "typedoc --options typedoc.json"
},
"peerDependencies": {
"react": ">=18.x",
"react-dom": ">=18.x"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^28.0.0",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-url": "^8.0.2",
"@svgr/rollup": "^8.1.0",
"@types/lodash": "^4.17.9",
"@types/react": "^18.3.9",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^8.7.0",
"@typescript-eslint/parser": "^8.7.0",
"concurrently": "^9.0.1",
"esbuild": "^0.24.0",
"eslint": "^9.11.1",
"eslint-config-prettier": "^9.1.0",
"eslint-config-react": "^1.1.7",
"eslint-config-react-app": "^7.0.1",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-jsx-a11y": "^6.10.0",
"eslint-plugin-react": "^7.37.0",
"eslint-plugin-react-hooks": "^4.6.2",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"npm-run-all": "^4.1.5",
"path": "^0.12.7",
"postcss-preset-env": "^10.0.5",
"prettier": "^3.3.3",
"pretty-quick": "^4.0.0",
"rimraf": "^6.0.1",
"rollup": "^4.22.5",
"rollup-plugin-esbuild": "^6.1.1",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"sass": "^1.79.3",
"typedoc": "^0.26.7",
"typescript": "^5.6.2"
},
"dependencies": {
"@floating-ui/dom": "^1.6.11",
"bignumber.js": "^9.1.2",
"lodash": "^4.17.21",
"react-copy-to-clipboard": "^5.1.0",
"tslib": "^2.7.0"
}
}