-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 898 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 898 Bytes
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
{
"name": "spellnames",
"collaborators": [
"Luna Yao <me+github@zznq.buzz>"
],
"description": "A script that transliterates CJK names.",
"version": "1.0.5",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/ZnqbuZ/SpellNames.git"
},
"scripts": {
"build": "tsup",
"lint": "tsc",
"check-exports": "attw --pack .",
"ci": "npm run build && npm run check-exports && npm run lint"
},
"dependencies": {
"@types/node": "^22.13.10"
},
"main": "dist/index.js",
"module": "dist/index.mjs",
"devDependencies": {
"terser": "^5.39.0",
"tsup": "^8.4.0",
"@arethetypeswrong/cli": "^0.17.4"
},
"exports": {
"./package.json": "./package.json",
".": {
"import": "./dist/index.mjs",
"default": "./dist/index.js"
}
},
"files": [
"dist",
"package.json",
"README.md"
]
}