-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
43 lines (43 loc) · 1.23 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
{
"name": "@tannin/root",
"private": true,
"type": "module",
"workspaces": [
"packages/*"
],
"scripts": {
"test:unit": "node --test packages/*/__tests__/*.js",
"test:lint": "eslint .",
"test:types": "npm run build:types",
"test": "npm run test:unit && npm run test:lint && npm run test:types",
"build:bundle": "rollup -c",
"prebuild:types": "tsc --build --clean",
"build:types": "tsc --build --verbose",
"build": "npm run build:bundle && npm run build:types"
},
"license": "MIT",
"devDependencies": {
"@aduth/eslint-config": "^4.6.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@types/node": "^20.14.8",
"benchmark": "^2.1.4",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"jed": "^1.1.1",
"lerna": "^8.1.3",
"prettier": "^3.3.2",
"rollup": "^4.18.0",
"typescript": "^5.5.2"
},
"dependencies": {
"@tannin/compat": "file:packages/compat",
"@tannin/compile": "file:packages/compile",
"@tannin/evaluate": "file:packages/evaluate",
"@tannin/plural-forms": "file:packages/plural-forms",
"@tannin/postfix": "file:packages/postfix",
"@tannin/sprintf": "file:packages/sprintf",
"tannin": "file:packages/tannin"
}
}