-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1.04 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": "@chialab/dna-tools",
"version": "3.0.0",
"type": "module",
"description": "A set of libraries for DNA integrations with other tools.",
"main": "index.js",
"repository": "https://github.com/chialab/dna-tools",
"author": "Chialab <[email protected]> (https://www.chialab.it)",
"license": "MIT",
"private": true,
"scripts": {
"lint": "prettier --check . && eslint packages/*/src",
"build": "tsc --build && node scripts/build.js",
"test": "vitest",
"install": "node scripts/tsconfig.js",
"version": "changeset version && YARN_ENABLE_IMMUTABLE_INSTALLS=false yarn install"
},
"workspaces": [
"packages/*"
],
"packageManager": "[email protected]",
"devDependencies": {
"@changesets/cli": "^2.26.0",
"@chialab/eslint-config": "^4.0.0",
"@chialab/prettier-config": "^1.2.0",
"@vitest/coverage-v8": "^1.0.0",
"@yarnpkg/core": "^4.0.0",
"esbuild": "^0.20.0",
"eslint": "^8.31.0",
"jsonc-parser": "^3.2.0",
"prettier": "^3.0.0",
"typescript": "^5.0.0",
"vitest": "^1.0.0"
}
}