-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.3 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
{
"name": "holocure-save-editor",
"version": "1.2.0",
"description": "Declarative save editor for HoloCure",
"keywords": [
"holocure",
"save",
"editor"
],
"author": "araguma",
"license": "MIT",
"main": "dist/cjs/index.js",
"files": [
"dist/",
"README.md"
],
"exports": {
"require": "./dist/cjs/index.js",
"import": "./dist/esm/index.js"
},
"scripts": {
"build": "npm run build:cjs && npm run build:esm",
"build:cjs": "npx tsc --module CommonJS --outDir dist/cjs && echo '{\"type\": \"commonjs\"}' > dist/cjs/package.json",
"build:esm": "npx tsc --module ESNext --outDir dist/esm && echo '{\"type\": \"module\"}' > dist/esm/package.json",
"test": "mocha --require ts-node/register specs/**/*.spec.ts"
},
"devDependencies": {
"@types/mocha": "^10.0.1",
"@types/node": "^20.4.5",
"mocha": "^10.2.0",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
},
"repository": {
"type": "git",
"url": "git+https://github.com/araguma/holocure-save-editor.git"
},
"bugs": {
"url": "https://github.com/araguma/holocure-save-editor/issues"
},
"homepage": "https://github.com/araguma/holocure-save-editor#readme"
}