-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 989 Bytes
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 989 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
{
"name": "idsfind",
"version": "3.1.1",
"description": "",
"main": "dist/index.js",
"module": "dist/index.mjs",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"build": "rimraf ./dist && tsup src/index.ts --format cjs,esm --dts --clean",
"build:update": "tsc ./scripts/update.ts --outDir ./scripts/ --esModuleInterop",
"generate": "ts-node ./scripts/update.ts"
},
"keywords": [
"Chinese Character",
"Ideographic Description Sequence",
"Unicode",
"Kanji",
"Hanzi"
],
"author": "Guanwe Liu <[email protected]>",
"license": "MIT",
"devDependencies": {
"@types/download": "^8.0.2",
"@types/lodash": "^4.14.195",
"chalk": "^5.2.0",
"csv-parse": "^5.4.0",
"download": "^8.0.0",
"lodash": "^4.17.21",
"rimraf": "^5.0.1",
"ts-node": "^10.9.1",
"tsup": "^7.1.0",
"typescript": "^5.1.5"
}
}