-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.45 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.45 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
{
"name": "@croct/templates",
"version": "0.0.0-dev",
"description": "A library of curated templates for UI components, projects, and personalization strategies.",
"author": {
"name": "Croct",
"email": "lib+templates@croct.com",
"url": "https://github.com/croct-tech/templates"
},
"license": "MIT",
"keywords": [
"croct",
"json",
"schema",
"json-schema"
],
"repository": {
"type": "git",
"url": "git+https://github.com/croct-tech/templates.git"
},
"bugs": {
"url": "https://github.com/croct-tech/templates/issues"
},
"homepage": "https://github.com/croct-tech/templates",
"type": "module",
"scripts": {
"lint": "eslint 'bin/**/*.ts'",
"validate": "tsc --noEmit",
"validate-templates": "tsx bin/cli.ts validate templates",
"format-templates": "tsx bin/cli.ts format templates",
"publish-templates": "tsx bin/cli.ts publish"
},
"dependencies": {
"@babel/runtime": "^7.27.0",
"@commander-js/extra-typings": "^13.1.0",
"@croct/json": "^2.1.0",
"@croct/json5-parser": "^0.1.0",
"ajv": "^8.17.1",
"ajv-formats": "^3.0.1",
"chalk": "^5.4.1",
"cli-table3": "^0.6.5",
"commander": "^13.1.0",
"typesense": "^2.0.3"
},
"devDependencies": {
"@croct/eslint-plugin": "^0.7.1",
"@types/cli-table": "^0.3.4",
"eslint": "^8.0.0",
"jest": "^29.7.0",
"tsx": "^4.19.3",
"typescript": "^5.6.2"
},
"files": [
"**/*.js",
"**/*.ts"
]
}