-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
61 lines (61 loc) · 2.06 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "@data-fair/lib",
"version": "0.49.0",
"description": "A collection of javascript functions, components, types, etc to help work inside the data-fair stack.",
"scripts": {
"lint": "eslint . --fix",
"build": "npm run build-types && rm -f packages/*/*.d.ts && tsc -p tsconfig.build.json && vue-tsc -p tsconfig.build-vue.json && eslint . --fix",
"build-types": "tsc -p tsconfig.build-schemas.json && node --experimental-strip-types packages/types-builder/build.ts",
"prepare": "husky install",
"quality": "eslint . && npm test",
"prepublishOnly": "npm run quality && npm run build",
"pre-test": "cd packages/types-builder/test && node --experimental-strip-types ../build.ts . --vjsf-dir=vjsf",
"test": "npm run pre-test && node --experimental-strip-types --test **/*.test.ts",
"test-only": "npm run pre-test && node --experimental-strip-types --test --test-only"
},
"engines": {
"node": ">=20.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/data-fair/lib.git"
},
"author": "Alban Mouton <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/data-fair/lib/issues"
},
"homepage": "https://github.com/data-fair/lib#readme",
"devDependencies": {
"@commitlint/cli": "^18.2.0",
"@commitlint/config-conventional": "^18.1.0",
"@types/cookie": "^0.6.0",
"@types/debug": "^4.1.10",
"@types/eslint": "^9.6.1",
"@types/node": "^22.5.3",
"@types/semver": "^7.5.8",
"@types/universal-cookie": "^2.2.0",
"@types/ws": "^8.5.8",
"@vueuse/core": "^11.1.0",
"ajv": "^8.17.1",
"ajv-errors": "^3.0.0",
"ajv-formats": "^3.0.1",
"ajv-i18n": "^4.2.0",
"eslint": "^9.12.0",
"husky": "^8.0.3",
"neostandard": "^0.11.6",
"typescript": "^5.6.2",
"vue-tsc": "^2.1.6"
},
"workspaces": [
"packages/common-types",
"packages/express",
"packages/node",
"packages/processing-dev",
"packages/types-builder",
"packages/utils",
"packages/validation",
"packages/vue",
"packages/vuetify"
]
}