-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.31 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.31 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
{
"name": "@tannin/root",
"private": true,
"type": "module",
"workspaces": [
"packages/*"
],
"scripts": {
"test:unit": "node --test packages/*/__tests__/*.js",
"test:lint": "eslint",
"test:types": "tsc --project tsconfig.test.json",
"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 && npm run fix-sprintf",
"build": "npm run build:bundle && npm run build:types",
"fix-sprintf": "node scripts/fix-sprintf.js"
},
"license": "MIT",
"devDependencies": {
"@aduth/eslint-config": "^5.0.0",
"@rollup/plugin-node-resolve": "^16.0.1",
"@rollup/plugin-terser": "^0.4.4",
"@types/node": "^24.0.15",
"benchmark": "^2.1.4",
"eslint": "^9.31.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.3",
"jed": "^1.1.1",
"lerna": "^8.2.3",
"prettier": "^3.6.2",
"rollup": "^4.45.1",
"typescript": "^5.8.3"
},
"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"
}
}