-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.65 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.65 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
{
"name": "ffl.js",
"main": "ffl.js",
"type": "module",
"scripts": {
"lint": "eslint",
"check-types": "tsc --noEmit",
"typedoc": "typedoc --skipErrorChecking ffl.js materials/* helpers/*",
"build:lint": "eslint ffl.js materials/*",
"build:types": "tsc",
"build:bundle": "rolldown -c rolldown.config.mjs",
"build": "npm run build:lint && npm run build:types && npm run build:bundle",
"prepublishOnly": "npm run build",
"closure": "google-closure-compiler --warning_level VERBOSE ffl.js --js_output_file ffl.min.js --language_in UNSTABLE --module_resolution NODE"
},
"repository": {
"type": "git",
"url": "git://github.com/ariankordi/FFL.js.git"
},
"exports": {
".": "./ffl.js",
"./helpers/*": "./helpers/*",
"./materials/*": "./materials/*",
"./examples/*": "./examples/*",
"./ffl-emscripten.cjs": "./ffl-emscripten.cjs"
},
"author": "Arian Kordi",
"license": "AGPL-3.0-only",
"bugs": {
"url": "https://github.com/ariankordi/FFL.js/issues"
},
"homepage": "https://github.com/ariankordi/FFL.js",
"peerDependencies": {
"@types/three": ">= 0.144.0",
"three": ">= 0.144.0"
},
"devDependencies": {
"@eslint-community/eslint-plugin-eslint-comments": "^4.4.1",
"@eslint/js": "^9.37.0",
"@stylistic/eslint-plugin": "^3.1.0",
"@types/node": "^22.13.8",
"eslint": "^9.37.0",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import-x": "^4.16.1",
"eslint-plugin-jsdoc": "^50.6.3",
"eslint-plugin-unicorn": "^61.0.2",
"globals": "^15.15.0",
"rolldown": "^1.0.0-rc.1",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.9.3"
}
}