-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathpackage.json
58 lines (58 loc) · 1.91 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
{
"name": "omniscent",
"author": "SuperSodaSea",
"description": "Analyze of Mekka & Symposium 1997 PC 4K 1st \"Omniscent\"",
"license": "WTFPL",
"main": "./lib/cjs/index.js",
"module": "./lib/esm/index.mjs",
"types": "./lib/types/index.d.ts",
"exports": {
".": {
"require": {
"default": "./lib/cjs/index.js",
"types": "./lib/types/index.d.ts"
},
"import": {
"default": "./lib/esm/index.mjs",
"types": "./lib/types/index.d.ts"
}
}
},
"scripts": {
"lint": "eslint --cache --max-warnings=0 --ext .js,.cjs,.mjs,.ts .",
"lint:fix": "npm run lint -- --fix",
"test:types": "tsc --noEmit",
"build": "rollup -c",
"build:dev": "rollup -cw",
"build:types": "tsc -p tsconfig.types.json",
"check": "run-s lint test:types",
"dist": "run-s build:types build"
},
"dependencies": {
"@babel/runtime": "^7.21.5",
"base64-js": "^1.5.1",
"npm-run-all": "^4.1.5",
"three": "^0.146.0",
"webaudio-tinysynth": "^1.1.3"
},
"devDependencies": {
"@babel/core": "^7.21.8",
"@babel/eslint-parser": "^7.21.8",
"@babel/plugin-transform-runtime": "^7.21.4",
"@babel/preset-env": "^7.21.5",
"@babel/preset-typescript": "^7.21.5",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^25.0.0",
"@rollup/plugin-node-resolve": "^15.0.2",
"@types/three": "^0.146.0",
"@typescript-eslint/eslint-plugin": "^5.59.6",
"@typescript-eslint/parser": "^5.59.6",
"esbuild": "^0.17.19",
"eslint": "^8.41.0",
"rollup": "^3.22.0",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-esbuild": "^5.0.0",
"typescript": "~5.0.4"
}
}