-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
45 lines (45 loc) · 1.51 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
{
"name": "mikktspace",
"version": "1.1.1",
"description": "MikkTSpace vertex tangent calculation, in Web Assembly",
"author": "Don McCurdy <[email protected]>",
"license": "MIT",
"repository": "github:donmccurdy/mikktspace-wasm",
"main": "dist/main/mikktspace_main.js",
"module": "dist/module/mikktspace_module.js",
"types": "dist/module/mikktspace_module.d.ts",
"sideEffects": false,
"scripts": {
"dist": "yarn dist:main && yarn dist:module && find dist/main -type f ! -name 'mikktspace*' -delete && find dist/module -type f ! -name 'mikktspace*' -delete",
"dist:module": "wasm-pack build --release --target bundler --out-dir dist/module --out-name mikktspace_module",
"dist:main": "wasm-pack build --release --target nodejs --out-dir dist/main --out-name mikktspace_main",
"dist:debug": "wasm-pack build --dev --target nodejs --out-dir dist/main --out-name mikktspace_main",
"clean": "rm dist/main* && rm dist/module*",
"test": "tape test/test.js | tap-spec",
"preversion": "yarn dist && yarn test",
"postversion": "git push && git push --tags && npm publish"
},
"keywords": [
"mikktspace",
"tangents",
"tangent-space",
"three.js",
"threejs",
"webgl",
"webgpu"
],
"files": [
"README.md",
"LICENSE",
"package.json",
"dist/",
"mikktspace.d.ts"
],
"devDependencies": {
"@gltf-transform/core": "4.1.1",
"@gltf-transform/functions": "4.1.1",
"tap-spec": "5.0.0",
"tape": "5.9.0"
},
"packageManager": "[email protected]"
}