-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
35 lines (35 loc) · 1.07 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
{
"name": "reejs",
"version": "0.20.1",
"description": "",
"type": "module",
"main": "src/cli/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"write-version": "node ./scripts/write-version.js",
"bump-test": "node ./scripts/bump-test.js",
"bump-small": "node ./scripts/bump-small.js",
"bump-mid": "node ./scripts/bump-mid.js",
"bump-major": "node ./scripts/bump-major.js",
"publish-all": "npm publish && cd src/imports && npm publish && cd ../server && npm publish && cd ../utils && npm publish && cd ../react && npm publish && cd ../..",
"docs:dev": "vitepress dev website",
"docs:build": "vitepress build website",
"docs:preview": "vitepress preview website"
},
"dependencies": {
"@reejs/imports": "2.12.1",
"@reejs/server": "0.20.1",
"@reejs/utils": "1.11.1",
"pathe": "^1.1.1"
},
"keywords": [],
"author": "@rovelstars",
"license": "MIT",
"bin": {
"reejs": "./src/cli/index.js"
},
"exports": {
".": "./imports.js",
"./packit": "./packit-intellisense.js"
}
}