-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.1 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.1 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
72
{
"name": "art-os-package",
"version": "2.0.14",
"description": "Reusable visual effects made with Three.js and ",
"repository": {
"type": "git",
"url": "git+https://github.com/HarryDuncan/art-os-package.git"
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/types/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"scripts": {
"lint": "npx eslint src",
"test": "vitest",
"build": "rimraf dist && tsc --module ESNext --target ESNext --outDir dist --declaration --declarationDir ./dist/types && node -e \"require('ncp').ncp('dist/index.js', 'dist/index.cjs', (err) => { if (err) { console.error(err); process.exit(1); } })\"",
"prepare": "npm run build",
"serve": "rimraf dist && tsc-watch --onSuccess \"copy dist\\index.js dist\\index.cjs\" --module ESNext --target ESNext --jsx react-jsx --declaration --declarationDir ./dist/types"
},
"files": [
"dist"
],
"keywords": [
"npm",
"typescript",
"package",
"template"
],
"author": "Harry Duncan",
"license": "MIT",
"dependencies": {
"three": "^0.174.0"
},
"devDependencies": {
"@eslint/js": "^9.24.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@types/node": "^18.0.0",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"@types/three": "^0.175.0",
"@typescript-eslint/eslint-plugin": "^8.29.0",
"@typescript-eslint/parser": "^8.29.0",
"@vitejs/plugin-react": "4.3.4",
"eslint": "^9.24.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"globals": "^16.0.0",
"jsdom": "^25.0.1",
"ncp": "^2.0.0",
"rimraf": "^5.0.5",
"tsc-watch": "^6.2.1",
"typescript": "^5.8.2",
"vite": "6.0.3",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "2.1.8"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0",
"three": "^0.174.0"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
}
}