-
Notifications
You must be signed in to change notification settings - Fork 598
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.66 KB
/
Copy pathpackage.json
File metadata and controls
83 lines (83 loc) · 2.66 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
73
74
75
76
77
78
79
80
81
82
83
{
"name": "@designcodeio/threeui",
"version": "1.2.0",
"description": "Open-source React components and interactive templates from ThreeUI Community.",
"license": "MIT",
"type": "module",
"main": "./lib-dist/index.js",
"module": "./lib-dist/index.js",
"types": "./lib-dist/index.d.ts",
"exports": {
".": {
"types": "./lib-dist/index.d.ts",
"import": "./lib-dist/index.js",
"default": "./lib-dist/index.js"
},
"./style.css": "./lib-dist/style.css",
"./components/*": {
"types": "./lib-dist/package-components/*.d.ts",
"import": "./lib-dist/package-components/*.js",
"default": "./lib-dist/package-components/*.js"
},
"./assets/*": "./lib-dist/assets/*",
"./package.json": "./package.json"
},
"files": [
"lib-dist",
"LICENSE",
"ASSET-LICENSES.md",
"FONT-LICENSES.md",
"THIRD_PARTY_NOTICES.md",
"README.md"
],
"sideEffects": [
"**/*.css"
],
"repository": {
"type": "git",
"url": "git+https://github.com/MengTo/threeui.git"
},
"homepage": "https://threeui.com",
"bugs": {
"url": "https://github.com/MengTo/threeui/issues"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"scripts": {
"dev": "vite",
"sync:community": "node scripts/sync-community-from-main.mjs",
"generate:lib": "node scripts/generate-library-entry.mjs",
"typecheck": "tsc --noEmit",
"test": "node --test scripts/community-sanitizers.test.mjs scripts/public-boundary.test.mjs scripts/library-package.test.mjs scripts/prepare-community-release.test.mjs packages/cli/test/*.test.mjs",
"audit:public": "node scripts/audit-public.mjs",
"build:site": "npm run typecheck && npm run audit:public && vite build && node scripts/audit-build.mjs",
"build:lib": "npm run generate:lib && vite build --config vite.lib.config.js && tsc -p tsconfig.lib.json && node scripts/copy-library-assets.mjs",
"build": "npm run test && npm run build:site && npm run build:lib",
"prepack": "npm run test && npm run audit:public && npm run build:lib",
"smoke:package": "node scripts/package-install-smoke.mjs",
"preview": "vite preview"
},
"dependencies": {
"three128": "npm:three@0.128.0",
"three165": "npm:three@0.165.0"
},
"peerDependencies": {
"react": ">=18 <20",
"react-dom": ">=18 <20",
"three": ">=0.149 <1"
},
"devDependencies": {
"@types/node": "^24.10.1",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@types/three": "0.149.0",
"@vitejs/plugin-react": "^5.1.1",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"three": "0.149.0",
"typescript": "^5.9.3",
"vite": "^7.3.1"
}
}