-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 980 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 980 Bytes
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
{
"name": "werkit-root",
"private": true,
"version": "0.0.0",
"description": "Werkit TypeScript dev depenencies",
"scripts": {
"format:check": "prettier --check \"**/*.@(ts|yml)\"",
"format:fix": "prettier --write \"**/*.@(ts|yml)\"",
"lint:check": "eslint .",
"lint:fix": "eslint . --fix",
"schema:check": "1schema check",
"schema:update": "1schema update",
"postschema:update": "cp types/src/generated/dependency-graph.schema.json werkit/compute/graph/dependency-graph.schema.json"
},
"author": "Metabolize",
"license": "MIT",
"repository": "metabolize/werkit",
"dependencies": {
"werkit": "file:./types",
"werkit-lambda": "file:./werkit-lambda-js"
},
"devDependencies": {
"1schema": "1.0.0",
"eslint": "9.39.4",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-simple-import-sort": "12.1.1",
"jiti": "2.6.1",
"neostandard": "0.12.2",
"prettier": "3.7.4",
"typescript": "5.9.3"
}
}