-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.56 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.56 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
{
"name": "dds-parser",
"version": "1.0.1",
"description": "Simple dds heeader and data parser",
"keywords": [
"dds",
"parser",
"webgl",
"typescript",
"front-end",
"backend"
],
"homepage": "https://github.com/4eb0da/dds-parser",
"bugs": {
"url": "https://github.com/4eb0da/dds-parser/issues"
},
"repository": "github:4eb0da/dds-parser",
"author": "4eb0da",
"license": "MIT",
"engines": {
"node": ">=4.0.0"
},
"scripts": {
"prepublishOnly": "npm run build-lib",
"prepare": "husky install",
"build-lib": "rm -rf dist && rollup --config rollup.config.ts --configPlugin typescript",
"build-lib-watch": "rm -rf dist && rollup --config rollup.config.ts --configPlugin typescript --watch",
"typecheck": "tsc --noEmit",
"lint": "eslint --ext .ts ."
},
"files": [
"dist/*"
],
"main": "dist/dds-parser.js",
"module": "dist/es/dds-parser.js",
"typings": "dist/dds-parser.d.ts",
"exports": {
".": {
"types": "./dist/dds-parser.d.ts",
"require": "./dist/dds-parser.js",
"import": "./dist/es/dds-parser.js"
},
"./dist/": "./dist/"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "15.0.1",
"@rollup/plugin-terser": "0.3.0",
"@rollup/plugin-typescript": "11.0.0",
"@types/eslint": "8.4.10",
"@types/node": "18.11.18",
"@typescript-eslint/eslint-plugin": "5.48.0",
"@typescript-eslint/parser": "5.48.0",
"eslint": "8.31.0",
"husky": "8.0.3",
"rollup": "3.9.1",
"rollup-plugin-dts": "5.1.0",
"typescript": "4.9.4"
}
}