-
Notifications
You must be signed in to change notification settings - Fork 69
/
package.json
94 lines (94 loc) · 4.53 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "@react-dev-inspector/monorepo",
"version": "0.0.0",
"description": "vectorial shape and whiteboard",
"private": true,
"license": "MIT",
"author": "zthxxx <[email protected]>",
"repository": "zthxxx/react-dev-inspector",
"packageManager": "[email protected]",
"files": [],
"scripts": {
"prepare": "husky install",
"test": "pnpm --recursive test",
"lint": "TIMING=1 eslint --format codeframe --ext js,cjs,mjs,ts,mts,tsx docs packages examples",
"purge": "pnpm -r clean && echo 'removing node_modules ...' && rm -rf .site {.,docs}/node_modules {examples,packages}/*/node_modules",
"build:packages": "pnpm --filter './packages/*' build",
"build:examples": "pnpm --filter './examples/*' build",
"build:site": "./scripts/build-site.sh"
},
"lint-staged": {
"*.{js,cjs,mjs,ts,mts,tsx}": [
"eslint --format codeframe"
]
},
"devDependencies": {
"@antfu/eslint-config-react": "0.39.7",
"@commitlint/cli": "18.4.3",
"@commitlint/config-conventional": "18.4.3",
"eslint": "8.44.0",
"eslint-formatter-codeframe": "7.32.1",
"husky": "^8.0.3",
"lint-staged": "13.2.3",
"tsx": "4.16.0",
"typescript": "5.2.2"
},
"pnpm": {
"packageExtensions": {
"storybook-solidjs-vite": {
"peerDependencies": {
"@storybook/builder-vite": "$@storybook/builder-vite"
}
}
},
"overrides": {
"array-buffer-byte-length": "npm:@nolyfill/array-buffer-byte-length@latest",
"array-includes": "npm:@nolyfill/array-includes@latest",
"array.prototype.flat": "npm:@nolyfill/array.prototype.flat@latest",
"array.prototype.flatmap": "npm:@nolyfill/array.prototype.flatmap@latest",
"array.prototype.tosorted": "npm:@nolyfill/array.prototype.tosorted@latest",
"available-typed-arrays": "npm:@nolyfill/available-typed-arrays@latest",
"deep-equal": "npm:@nolyfill/deep-equal@latest",
"define-properties": "npm:@nolyfill/define-properties@latest",
"es-set-tostringtag": "npm:@nolyfill/es-set-tostringtag@latest",
"function-bind": "npm:@nolyfill/function-bind@latest",
"function.prototype.name": "npm:@nolyfill/function.prototype.name@latest",
"get-symbol-description": "npm:@nolyfill/get-symbol-description@latest",
"globalthis": "npm:@nolyfill/globalthis@latest",
"gopd": "npm:@nolyfill/gopd@latest",
"harmony-reflect": "npm:@nolyfill/harmony-reflect@latest",
"has": "npm:@nolyfill/has@latest",
"has-property-descriptors": "npm:@nolyfill/has-property-descriptors@latest",
"has-proto": "npm:@nolyfill/has-proto@latest",
"has-symbols": "npm:@nolyfill/has-symbols@latest",
"has-tostringtag": "npm:@nolyfill/has-tostringtag@latest",
"is-array-buffer": "npm:@nolyfill/is-array-buffer@latest",
"is-date-object": "npm:@nolyfill/is-date-object@latest",
"is-regex": "npm:@nolyfill/is-regex@latest",
"is-shared-array-buffer": "npm:@nolyfill/is-shared-array-buffer@latest",
"is-string": "npm:@nolyfill/is-string@latest",
"is-symbol": "npm:@nolyfill/is-symbol@latest",
"is-weakref": "npm:@nolyfill/is-weakref@latest",
"object-is": "npm:@nolyfill/object-is@latest",
"object-keys": "npm:@nolyfill/object-keys@latest",
"object.assign": "npm:@nolyfill/object.assign@latest",
"object.entries": "npm:@nolyfill/object.entries@latest",
"object.fromentries": "npm:@nolyfill/object.fromentries@latest",
"object.getownpropertydescriptors": "npm:@nolyfill/object.getownpropertydescriptors@latest",
"object.hasown": "npm:@nolyfill/object.hasown@latest",
"object.values": "npm:@nolyfill/object.values@latest",
"reflect.getprototypeof": "npm:@nolyfill/reflect.getprototypeof@latest",
"regexp.prototype.flags": "npm:@nolyfill/regexp.prototype.flags@latest",
"safe-regex-test": "npm:@nolyfill/safe-regex-test@latest",
"string.prototype.matchall": "npm:@nolyfill/string.prototype.matchall@latest",
"string.prototype.padend": "npm:@nolyfill/string.prototype.padend@latest",
"string.prototype.trim": "npm:@nolyfill/string.prototype.trim@latest",
"string.prototype.trimend": "npm:@nolyfill/string.prototype.trimend@latest",
"string.prototype.trimstart": "npm:@nolyfill/string.prototype.trimstart@latest",
"typed-array-length": "npm:@nolyfill/typed-array-length@latest",
"unbox-primitive": "npm:@nolyfill/unbox-primitive@latest",
"which-boxed-primitive": "npm:@nolyfill/which-boxed-primitive@latest",
"which-typed-array": "npm:@nolyfill/which-typed-array@latest"
}
}
}