-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.11 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.11 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
{
"type": "module",
"name": "@ideditor/schema-builder",
"version": "7.0.0-dev",
"description": "Framework for defining iD-compatible tagging models",
"homepage": "https://github.com/ideditor/schema-builder#readme",
"bugs": "https://github.com/ideditor/schema-builder/issues",
"repository": {
"type": "git",
"url": "git+https://github.com/ideditor/schema-builder.git"
},
"license": "ISC",
"exports": "./lib/index.js",
"dependencies": {
"@transifex/api": "^7.1.0",
"js-yaml": "^4.0.0",
"json-schema-to-typescript-lite": "^15.0.0",
"jsonschema": "^1.1.0",
"marky": "^1.2.4",
"node-fetch": "^3.2.10",
"shelljs": "^0.10.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/taginfo-projects": "github:taginfo/taginfo-projects#6daafd2e30a86a8bfb9615855af2c2d73bd98279",
"@vitest/coverage-v8": "^4.1.5",
"@vitest/eslint-plugin": "^1.6.16",
"eslint": "^10.0.0",
"globals": "^17.3.0",
"vitest": "^4.1.5"
},
"engines": {
"node": ">=22"
},
"scripts": {
"lint": "eslint",
"lint:fix": "eslint --fix",
"test": "vitest run"
}
}