-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
71 lines (71 loc) · 2.71 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
{
"name": "audiorbits",
"version": "2.4.0",
"description": "WebGL Wallpaper for Wallpaper Engine",
"main": "src/AudiOrbi.ts",
"sideEffects": "false",
"scripts": {
"asbuild:debug": "asc assembly/FractalGeometry.ts --target debug",
"asbuild:release": "asc assembly/FractalGeometry.ts --target release",
"asbuild": "yarn asbuild:debug && yarn asbuild:release",
"watch": "tsc --watch",
"start": "webpack && webpack serve",
"prod": "webpack --env production",
"serve-prod": "yarn prod && webpack serve --env production",
"lint": "eslint ./src/ --ext js,ts,jsx,tsx --fix",
"format": "prettier --config .prettierrc --ignore-path .gitignore \"src/**/*.+(js|ts|json)\" --write"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hexxone/audiorbits.git"
},
"author": "hexxone",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/hexxone/audiorbits/issues"
},
"homepage": "https://github.com/hexxone/audiorbits#readme",
"dependencies": {
"@assemblyscript/loader": "^0.27.22",
"@babel/eslint-parser": "^7.16.3",
"@types/node": "^18.7.22",
"@types/offscreencanvas": "^2019.6.4",
"@typescript-eslint/eslint-plugin": "^7.0.1",
"@typescript-eslint/parser": "^7.0.1",
"@webgpu/types": "^0.1.40",
"@webpack-contrib/eslint-config-webpack": "^3.0.0",
"@yushijinhun/three-minifier-common": "^0.3.0",
"assemblyscript": "^0.27.22",
"babel-loader": "^8.2.5",
"better-docs": "^2.7.2",
"circular-dependency-plugin": "^5.2.2",
"copy-webpack-plugin": "^11.0.0",
"copyfiles": "^2.4.1",
"eslint": "^8.3.0",
"eslint-config-airbnb": "^19.0.2",
"eslint-config-google": "^0.14.0",
"eslint-config-mdcs": "^5.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-html": "^6.2.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.27.1",
"file-loader": "^6.2.0",
"fork-ts-checker-webpack-plugin": "^6.2.5",
"null-loader": "^4.0.1",
"prettier": "^3.2.5",
"react": "^18.2.0",
"replace-in-file": "^6.2.0",
"stats-js": "^1.0.1",
"terser-webpack-plugin": "^5.1.1",
"ts-loader": "^9.2.6",
"ts-transformer-properties-rename": "^0.11.0",
"typescript": "^4.4.4",
"webpack": "^5.80.0",
"webpack-bundle-analyzer": "^4.5.0",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.4.0"
}
}