-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.38 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.38 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
{
"name": "bc3",
"description": "Zero-dependency TypeScript parser for FIEBDC-3/BC3 construction budget files (Presto, ARQUIMEDES, TCQ). Builds a type-safe hierarchical model for bills of quantities, cost databases, and construction project budgets.",
"author": "Igor HC (ogorhc)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/ogorhc/bc3.git"
},
"bugs": {
"url": "https://github.com/ogorhc/bc3/issues"
},
"homepage": "https://github.com/ogorhc/bc3#readme",
"version": "1.1.0",
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"files": [
"dist"
],
"scripts": {
"test": "node --import tsx/esm --test $(find tests -name '*.test.ts' -type f)",
"test:watch": "node --import tsx/esm --test --watch $(find tests -name '*.test.ts' -type f)",
"dev:build": "tsup src/index.ts --format esm,cjs --dts --sourcemap --clean --watch",
"dev:tokenize": " npm run build && node scripts/tokenize.mjs ./scripts/file.bc3",
"diagnose": "npm run build && node scripts/diagnose.mjs",
"ci": "npm run build && npm run check-format",
"build": "tsup src/index.ts --format esm,cjs --dts --sourcemap --clean",
"clean": "rm -rf dist",
"prepublishOnly": "npm run ci",
"format": "prettier --write .",
"check-format": "prettier --check .",
"changeset": "changeset",
"version-packages": "changeset version",
"publish:changesets": "changeset publish",
"prepare": "test \"$CI\" = \"true\" || husky",
"check": "npm run check-format"
},
"keywords": [
"bc3",
"fiebdc",
"fiebdc-3",
"bc3-parser",
"fiebdc-parser",
"construction",
"construction-budget",
"boq",
"bill-of-quantities",
"cost-database",
"parser",
"typescript",
"typescript-parser",
"nodejs",
"presto",
"arquimedes",
"tcq",
"cost-estimation",
"budget-estimation",
"esm",
"library"
],
"devDependencies": {
"@changesets/cli": "^2.29.8",
"husky": "9.1.7",
"lint-staged": "16.2.7",
"prettier": "^3.7.4",
"tsup": "8.5.1",
"tsx": "4.21.0",
"typescript": "5.9.3"
},
"lint-staged": {
"*.{ts,tsx,js,jsx,json,md,yml,yaml}": [
"prettier --write"
]
}
}