forked from michealparks/trzy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 1.99 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
{
"name": "trzy",
"version": "0.3.17",
"description": "A utility library for Three.js",
"type": "module",
"author": "Micheal Parks",
"license": "MIT",
"bugs": {
"url": "https://github.com/michealparks/trzy/issues"
},
"homepage": "https://michealparks.github.io/trzy",
"files": [
"dist",
"!dist/**/*.test.*",
"!dist/**/*.spec.*"
],
"keywords": [
"three",
"three.js",
"util",
"3d",
"webgl"
],
"scripts": {
"lint": "eslint ./src",
"models": "node ./scripts/models.js",
"start": "vite dev",
"build": "vite build && npm run package",
"preview": "vite preview",
"package": "svelte-kit sync && svelte-package && publint",
"prepublishOnly": "npm run package",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch"
},
"types": "./dist/index.d.ts",
"module": "./dist/index.js",
"unpkg": "./dist/index.js",
"main": "./dist/index.js",
"exports": {
".": "./dist/index.js",
"./package.json": "./package.json"
},
"svelte": "./dist/index.js",
"peerDependencies": {
"three": "*"
},
"dependencies": {
"simplex-noise": "^4.0.1",
"three-mesh-bvh": "^0.6.8"
},
"devDependencies": {
"@sveltejs/adapter-static": "^2.0.3",
"@sveltejs/kit": "^1.25.1",
"@sveltejs/package": "^2.2.2",
"@types/prismjs": "^1.26.1",
"@types/three": "^0.156.0",
"@typescript-eslint/eslint-plugin": "^6.7.4",
"@typescript-eslint/parser": "^6.7.4",
"autoprefixer": "^10.4.16",
"eslint": "^8.51.0",
"eslint-plugin-unicorn": "^48.0.1",
"postcss": "^8.4.31",
"postprocessing": "^6.33.2",
"prismjs": "^1.29.0",
"publint": "^0.2.3",
"svelte": "^4.2.1",
"svelte-check": "^3.5.2",
"tailwindcss": "^3.3.3",
"three": "^0.157.0",
"three-inspect": "^0.3.4",
"tslib": "^2.6.2",
"typescript": "^5.2.2",
"vite": "^4.4.11",
"vite-plugin-glsl": "^1.1.2"
}
}