forked from kamichikoichi/kage-engine
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.81 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.81 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
62
63
64
65
{
"name": "@kurgm/kage-engine",
"version": "0.6.1",
"description": "An engine that generates glyph image file from KAGE data",
"directories": {
"doc": "docs"
},
"type": "module",
"main": "./lib/cjs/index.js",
"module": "./lib/esm/index.js",
"types": "./lib/esm/index.d.ts",
"exports": {
".": {
"import": {
"types": "./lib/esm/index.d.ts",
"default": "./lib/esm/index.js"
},
"require": {
"types": "./lib/cjs/index.d.ts",
"default": "./lib/cjs/index.js"
}
}
},
"files": [
"lib",
"dist"
],
"scripts": {
"build": "npm run build:lib && npm run build:dist",
"build:lib": "tsc -p tsconfig.esm.json && tsc -p tsconfig.cjs.json && tsconfig-to-dual-package tsconfig.esm.json tsconfig.cjs.json",
"build:dist": "mkdir -p dist && rollup -c",
"build:doc": "typedoc",
"clean": "rm -r lib dist",
"lint": "eslint 'src/**/*.ts'",
"test": "node test/index.js && node test/strokes.js",
"version": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kurgm/kage-engine.git"
},
"author": "",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/kurgm/kage-engine/issues"
},
"homepage": "https://github.com/kurgm/kage-engine#readme",
"devDependencies": {
"@eslint/js": "^10.0.1",
"@release-it/bumper": "^7.0.5",
"@release-it/keep-a-changelog": "^7.0.1",
"@rollup/plugin-terser": "^1.0.0",
"@rollup/plugin-typescript": "^12.3.0",
"@stylistic/eslint-plugin": "^5.10.0",
"eslint": "^10.0.3",
"release-it": "^19.2.4",
"rollup": "^4.59.0",
"tsconfig-to-dual-package": "^1.2.0",
"tslib": "^2.8.1",
"typedoc": "^0.28.17",
"typedoc-plugin-markdown": "^4.10.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.1"
}
}