-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.17 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": "akta",
"private": true,
"version": "0.0.1",
"description": "",
"license": "MIT",
"homepage": "https://github.com/aktajs/akta#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/aktajs/akta.git"
},
"bugs": {
"url": "https://github.com/aktajs/akta/issues"
},
"workspaces": [
"./packages/*"
],
"engines": {
"node": ">=16",
"pnpm": ">=6"
},
"scripts": {
"build:template": "cd packages/template && pnpm build",
"dev:template": "cd packages/template && pnpm dev",
"start:template": "cd packages/template && pnpm start",
"build": "pnpm --filter \"@akta/*\" build",
"build:all": "pnpm build:clear && pnpm build && pnpm build:types",
"build:types": "tsc --build",
"build:clear": "rimraf packages/**/dist packages/**/tsconfig.tsbuildinfo",
"test": "pnpm -r test",
"publish": "pnpm build:all && pnpm test && pnpm -r publish"
},
"dependencies": {
"@types/node": "^17.0.23",
"esbuild": "^0.14.29",
"esbuild-plugin-raw": "^0.1.6",
"rimraf": "^3.0.2",
"typescript": "^4.6.3"
},
"devDependencies": {
"@akta/plugin": "workspace:*",
"vite": "^2.9.0"
}
}