-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
44 lines (44 loc) · 1.44 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": "kobold",
"version": "0.0.1",
"description": "Kobold",
"author": "ackwell",
"license": "MIT",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"start": "yarn build && concurrently --kill-others --names compile,declare \"yarn compile:watch\" \"yarn declare:watch\"",
"build": "concurrently --kill-others-on-fail --names compile,declare \"yarn compile\" \"yarn declare\"",
"clean": "rimraf \"packages/*/dist\"",
"compile": "wsrun babel src --out-dir dist --extensions .ts --root-mode upward",
"compile:watch": "yarn compile --watch --skip-initial-build --verbose",
"declare": "wsrun --stages tsc --emitDeclarationOnly",
"declare:watch": "wsrun tsc --emitDeclarationOnly --watch --preserveWatchOutput",
"lint": "eslint packages/*/src/**/*.ts",
"kobold": "yarn workspace @kobold/cli run kobold"
},
"engines": {
"node": ">=10"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"@babel/preset-typescript": "^7.9.0",
"@types/node": "^12",
"@typescript-eslint/eslint-plugin": "^2.29.0",
"@typescript-eslint/parser": "^2.29.0",
"concurrently": "^5.2.0",
"eslint": "^6.8.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-prettier": "^3.1.3",
"prettier": "^2.0.5",
"rimraf": "^3.0.2",
"typescript": "^3.9.1-rc",
"wsrun": "^5.2.0"
}
}