-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.45 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
{
"version": "1.5.16",
"name": "@cluesurf/talk",
"main": "index.js",
"license": "MIT",
"dependencies": {
"@lancejpollard/script-tree": "^1.1.4",
"lodash": "^4.17.21"
},
"scripts": {
"make": "rm -rf host && tsc && tsc-alias && cp package.json host/package.json",
"scan": "concurrently --kill-others \"tsc -w\" \"tsc-alias -w\"",
"lint": "eslint --ext .ts ./make",
"lint:fix": "npm run lint -- --fix",
"test": "npx tsx test.ts",
"host": "pnpm make && cd host && npm publish --access=public"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^4.0.0",
"@types/lodash": "^4.17.13",
"@types/node": "^18.11.17",
"@types/prettier": "^2.7.2",
"@typescript-eslint/eslint-plugin": "^5.46.1",
"@typescript-eslint/parser": "^5.46.1",
"concurrently": "^7.6.0",
"eslint": "^8.31.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard-with-typescript": "^24.0.0",
"eslint-import-resolver-typescript": "^3.5.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.6.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-simple-import-sort": "^8.0.0",
"eslint-plugin-sort-exports": "^0.8.0",
"eslint-plugin-sort-keys": "^2.3.5",
"eslint-plugin-typescript-sort-keys": "^2.1.0",
"prettier": "^2.8.1",
"ts-node": "^10.9.1",
"tsc-alias": "^1.8.2",
"tsx": "^3.12.7",
"typescript": "^4.9.4"
}
}