-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.44 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.44 KB
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
{
"name" : "espine-react",
"version" : "0.0.1",
"author" : {
"name" : "Alan Tai"
},
"repository" : {
"type" : "git",
"url" : "https://github.com/ayltai/espine.git"
},
"bugs" : {
"url" : "https://github.com/ayltai/espine/issues"
},
"keywords" : [
"esp32",
"micropython"
],
"license" : "MIT",
"module" : "dist/index.es.js",
"main" : "dist/index.cjs.js",
"types" : "dist/src/index.d.ts",
"type" : "module",
"files" : [
"dist"
],
"scripts" : {
"clean" : "pnpm dlx rimraf --glob **/node_modules/* pnpm-lock.yaml",
"reset" : "pnpm clean && pnpm i && pnpm audit -P",
"lint" : "eslint src",
"pretest" : "pnpm lint",
"test" : "cross-env VITE_COVERAGE=true vitest --run",
"test:ci" : "cross-env NODE_OPTIONS=--max-old-space-size=1536 VITE_COVERAGE=true vitest --run",
"build" : "vite build && tsc -p tsconfig.build.json"
},
"peerDependencies" : {
"react" : "19.2.0",
"react-dom" : "19.2.0"
},
"dependencies" : {
},
"devDependencies" : {
"@eslint/eslintrc" : "^3.3.5",
"@eslint/js" : "^10.0.1",
"@testing-library/react" : "^16.3.2",
"@types/react" : "^19.2.14",
"@typescript-eslint/parser" : "^8.57.1",
"@vitejs/plugin-react-swc" : "^4.3.0",
"@vitest/coverage-v8" : "^4.1.0",
"@vitest/ui" : "^4.1.0",
"cross-env" : "^10.1.0",
"eslint" : "~9.39.4",
"eslint-plugin-import" : "^2.32.0",
"eslint-plugin-prefer-arrow" : "^1.2.3",
"eslint-plugin-react" : "^7.37.5",
"eslint-plugin-react-hooks" : "^7.0.1",
"eslint-plugin-unicorn" : "^63.0.0",
"globals" : "^17.4.0",
"jsdom" : "^29.0.0",
"typescript" : "^5.9.3",
"typescript-eslint" : "^8.57.1",
"vite" : "^8.0.1",
"vitest" : "^4.1.0"
},
"engines" : {
"node" : ">=22",
"pnpm" : ">=10"
},
"publishConfig" : {
"access" : "public"
}
}