forked from tldraw/lask
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.02 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": "lask",
"version": "0.1.1",
"private": false,
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"source": "./src/index.ts",
"bin": {
"lask": "./dist/cli.js"
},
"files": [
"dist/**/*"
],
"description": "A manager for build and dev.",
"author": "@steveruizok",
"repository": {
"type": "git",
"url": "https://github.com/tldraw/lask.git"
},
"scripts": {
"dev": "ts-node ./src/cli.ts -d -n",
"clean": "rm -rf node_modules && rm -rf dist",
"build": "ts-node ./src/cli.ts -n",
"test": "jest",
"prepublish": "yarn build && yarn test"
},
"dependencies": {
"commander": "^2.20.0",
"esbuild": "^0.14.18",
"tsconfig-paths": "^3.12.0",
"tsconfig-replace-paths": "^0.0.11",
"zlib": "^1.0.5"
},
"devDependencies": {
"@swc-node/jest": "^1.4.3",
"@types/jest": "^26.0.22",
"@types/node": "^17.0.16",
"jest": "^26.6.3",
"ts-node": "^10.4.0",
"tslib": "^2.3.1",
"typescript": "^4.5.5"
}
}