-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.49 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.49 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
{
"name": "@modadao/visualiser",
"version": "1.0.4",
"license": "UNLICENSED",
"files": [
"dist"
],
"types": "./dist/types.d.ts",
"module": "./dist/moda-visualiser.es.js",
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"exports": {
".": {
"import": "./dist/moda-visualiser.es.js"
}
},
"scripts": {
"build": "vite build && tsc --emitDeclarationOnly && npm run build:bundle-types",
"build:bundle-types": "dts-bundle-generator -o dist/types.d.ts dist/index.d.ts",
"build:clean-dist": "find ./dist/ -name \"*.d.ts\" | grep -v \"types.d.ts\" | xargs rm -r",
"prepublishOnly": "rm -rf dist && vite build && tsc --emitDeclarationOnly && npm run build:bundle-types",
"preview": "vite preview"
},
"devDependencies": {
"@types/p5": "^1.4.2",
"@types/three": "^0.137.0",
"dts-bundle-generator": "^6.5.0",
"nodemon": "^2.0.15",
"p5": "^1.4.1",
"p5js-wrapper": "^1.2.3",
"rollup-plugin-analyzer": "^4.0.0",
"rollup-plugin-typescript2": "^0.31.2",
"typescript": "^4.5.4",
"vite": "^2.8.0",
"vite-plugin-dts": "^0.9.9",
"vite-plugin-glsl": "^0.0.9"
},
"dependencies": {
"simplex-noise": "^3.0.1",
"three": "^0.138.1",
"three-instanced-uniforms-mesh": "^0.46.0"
},
"gitHead": "d39133a0b8bf8e85a75f05dc0d99513fcf984d66",
"publishConfig": { "registry": "https://npm.pkg.github.com/" },
"repository": {
"type": "git",
"url": "https://github.com/modadao/moda-visualiser.git"
}
}