-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
44 lines (44 loc) · 1.16 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
43
44
{
"name": "tshet-uinh-examples",
"version": "20241008.0.0",
"description": "JavaScript code examples to generate the derivatives of the Qieyun phonological system using qieyun-js",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"default": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": ["dist"],
"scripts": {
"lint": "eslint . --ignore-pattern dist/**/*",
"lint:fix": "eslint --fix . --ignore-pattern dist/**/*",
"build": "node build/main.js",
"test": "node test/main.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nk2028/tshet-uinh-examples.git"
},
"keywords": [
"historical-linguistics",
"middle-chinese",
"qieyun"
],
"author": "nk2028",
"license": "CC0-1.0",
"bugs": {
"url": "https://github.com/nk2028/tshet-uinh-examples/issues"
},
"homepage": "https://github.com/nk2028/tshet-uinh-examples#readme",
"dependencies": {
"tshet-uinh": "^0.15.1",
"tshet-uinh-deriver-tools": "^0.2.0"
},
"devDependencies": {
"@stylistic/eslint-plugin-js": "^2.11.0",
"eslint": "^9.15.0"
}
}