-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
46 lines (46 loc) · 1.47 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
45
46
{
"name": "@chialab/rna-project",
"private": true,
"type": "module",
"version": "0.18.0",
"description": "Build tools for modern web modules and applications.",
"author": "Chialab <[email protected]> (https://www.chialab.it)",
"license": "MIT",
"scripts": {
"clear": "rimraf --glob 'packages/*/{types,*.tsbuildinfo}' 'packages/*/dist'",
"build": "yarn workspaces foreach --topological-dev --verbose run build",
"types": "rimraf --glob 'packages/*/{types,*.tsbuildinfo}' && tsc -b",
"lint": "prettier --check . && eslint .",
"test": "vitest --coverage",
"new": "plop --plopfile internals/generators/plopfile.js module",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs",
"version": "changeset version && YARN_ENABLE_IMMUTABLE_INSTALLS=false yarn install"
},
"repository": {
"type": "git",
"url": "https://github.com/chialab/rna"
},
"devDependencies": {
"@changesets/cli": "^2.22.0",
"@chialab/eslint-config": "^4.0.0",
"@chialab/prettier-config": "^1.2.2",
"@chialab/rna": "*",
"@vitest/coverage-v8": "^2.0.0",
"@yarnpkg/core": "^4.1.1",
"chai-string": "^1.5.0",
"eslint": "^8.0.0",
"jsonc-parser": "^3.0.0",
"plop": "^4.0.0",
"prettier": "^3.1.1",
"rimraf": "^6.0.0",
"typescript": "^5.0.0",
"vitepress": "^1.0.0",
"vitest": "^2.0.0"
},
"workspaces": [
"packages/*"
],
"packageManager": "[email protected]"
}