-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.88 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.88 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
66
{
"version": "1.7.6",
"name": "@cluesurf/talk",
"main": "./host/index.js",
"license": "MIT",
"exports": {
".": "./host/index.js",
"./*": "./host/make/*.js"
},
"typesVersions": {
"*": {
"*": [
"host/make/*.d.ts"
],
".": [
"host/index.d.ts"
]
}
},
"files": [
"host"
],
"dependencies": {
"@lancejpollard/script-tree": "^1.1.4",
"lodash": "4.17.23",
"x-sampa-ipa": "^0.0.3"
},
"scripts": {
"make": "rm -rf host && tsup --no-dts && tsc --emitDeclarationOnly --declaration --outDir host --skipLibCheck",
"scan": "concurrently --kill-others \"tsc -w\" \"tsc-alias -w\"",
"lint": "eslint --ext .ts ./make",
"lint:fix": "npm run lint -- --fix",
"test": "NODE_NO_WARNINGS=1 npx tsx test.ts",
"cluster": "NODE_NO_WARNINGS=1 npx tsx make/talk/cluster-builder.ts",
"host": "pnpm make && npm publish --access=public"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "6.0.2",
"@types/lodash": "4.17.23",
"@types/node": "25.2.3",
"@types/prettier": "3.0.0",
"@typescript-eslint/eslint-plugin": "8.55.0",
"@typescript-eslint/parser": "8.55.0",
"chalk": "^5.6.2",
"concurrently": "9.2.1",
"eslint": "10.0.0",
"eslint-config-prettier": "10.1.8",
"eslint-config-standard-with-typescript": "43.0.1",
"eslint-import-resolver-typescript": "4.4.4",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-n": "17.23.2",
"eslint-plugin-prettier": "5.5.5",
"eslint-plugin-promise": "7.2.1",
"eslint-plugin-simple-import-sort": "12.1.1",
"eslint-plugin-sort-exports": "0.9.1",
"eslint-plugin-sort-keys": "^2.3.5",
"eslint-plugin-typescript-sort-keys": "3.3.0",
"prettier": "3.8.1",
"ts-node": "10.9.2",
"tsc-alias": "1.8.16",
"tsup": "^8.5.1",
"tsx": "4.21.0",
"typescript": "5.9.3",
"vitest": "^4.1.0"
}
}