-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.44 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.44 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
53
54
55
56
57
58
59
60
61
{
"name": "texture2ddecoder.js",
"version": "1.1.0",
"description": "WASM bindings for K0lb3's texture2ddecoder",
"license": "MIT",
"author": "Jelosus1",
"type": "module",
"main": "./dist/index.cjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build:wasm": "emcmake cmake -S . -B build -G Ninja -DCMAKE_BUILD_TYPE=Release && cmake --build build",
"build:ts": "tsup",
"sync:dist": "node scripts/sync-dist.mjs",
"build": "pnpm build:wasm && pnpm build:ts && pnpm sync:dist",
"pretest": "pnpm build",
"test": "vitest run"
},
"sideEffects": false,
"repository": {
"type": "git",
"url": "https://github.com/Jelosus2/texture2ddecoder.js.git"
},
"homepage": "https://github.com/Jelosus2/texture2ddecoder.js#readme",
"bugs": {
"url": "https://github.com/Jelosus2/texture2ddecoder.js/issues"
},
"keywords": [
"texture2ddecoder",
"unity",
"texture",
"decoder",
"wasm",
"webassembly",
"astc",
"etc2",
"bc7",
"pvrtc"
],
"packageManager": "pnpm@10.26.0",
"devDependencies": {
"@types/adm-zip": "^0.5.8",
"@types/node": "^25.5.2",
"adm-zip": "^0.5.17",
"fast-png": "^8.0.0",
"tsup": "^8.5.1",
"typescript": "^6.0.2",
"vitest": "^4.1.4"
}
}