-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
112 lines (112 loc) · 2.97 KB
/
package.json
File metadata and controls
112 lines (112 loc) · 2.97 KB
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "@stone-js/cli",
"version": "0.1.2",
"description": "The official CLI tool for building, running, and managing Stone.js applications.",
"author": "Mr. Stone <evensstone@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/stone-foundation/stone-js-cli.git"
},
"homepage": "https://stonejs.dev",
"bugs": {
"url": "https://github.com/stone-foundation/stone-js-cli/issues"
},
"keywords": [
"cli",
"console",
"Stone.js"
],
"files": [
"/bin",
"/dist"
],
"bin": {
"stone": "bin/stone.mjs"
},
"type": "module",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"engines": {
"node": ">=18.17.0"
},
"scripts": {
"lint": "ts-standard src",
"lint:fix": "ts-standard --fix src tests",
"predoc": "rimraf docs",
"doc": "typedoc",
"prebuild": "rimraf dist && npm run doc",
"build": "rollup -c",
"test": "vitest run",
"test:cvg": "npm run test -- --coverage",
"test:text": "npm run test:cvg -- --coverage.reporter=text",
"test:html": "npm run test:cvg -- --coverage.reporter=html",
"test:clover": "npm run test:cvg -- --coverage.reporter=clover",
"prepare": "husky"
},
"dependencies": {
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-json": "^6.0.1",
"@rollup/plugin-commonjs": "^28.0.3",
"@rollup/plugin-multi-entry": "^6.0.1",
"@rollup/plugin-node-resolve": "^16.0.1",
"@stone-js/config": "^0.1.0",
"@stone-js/core": "^0.1.1",
"@stone-js/filesystem": "^0.1.0",
"@stone-js/node-cli-adapter": "^0.2.0",
"@stone-js/pipeline": "^0.1.0",
"@stone-js/router": "^0.1.0",
"@stone-js/use-react": "^0.2.0",
"@vitejs/plugin-react": "^4.3.4",
"chalk": "^5.3.0",
"chokidar": "^3.6.0",
"cross-spawn": "^7.0.3",
"date-fns": "^4.1.0",
"deepmerge": "^4.3.1",
"dotenv": "^16.4.7",
"dotenv-expand": "^12.0.1",
"fs-extra": "^11.2.0",
"glob": "^10.3.12",
"rollup": "^4.43.0",
"rollup-plugin-node-externals": "^8.0.0",
"simple-git": "^3.27.0",
"typescript": "^5.6.3",
"vite": "^6.0.5",
"vite-plugin-babel": "^1.3.0",
"yargs": "^17.7.2"
},
"devDependencies": {
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@rollup/plugin-typescript": "^12.1.1",
"@types/cross-spawn": "^6.0.6",
"@types/fs-extra": "^11.0.4",
"@types/node": "^24.0.0",
"@types/yargs": "^17.0.33",
"@vitest/coverage-v8": "^3.2.3",
"husky": "^9.1.7",
"rimraf": "^6.0.1",
"rollup-plugin-delete": "^3.0.1",
"rollup-plugin-dts": "^6.2.1",
"ts-standard": "^12.0.2",
"tslib": "^2.8.1",
"typedoc": "^0.28.5",
"typedoc-plugin-markdown": "^4.6.4",
"typescript": "^5.6.3",
"vitest": "^3.2.3"
},
"ts-standard": {
"globals": [
"it",
"test",
"expect",
"describe",
"beforeEach"
]
}
}