-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.7 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.7 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
{
"name": "@remoteoss/remote-json-schema-form-kit",
"type": "module",
"version": "0.0.10",
"packageManager": "npm@10.9.1-r0",
"description": "Remote's kit for json-schema-form",
"author": "Remote.com <engineering@remote.com> (https://remote.com/)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/remoteoss/remote-json-schema-form-kit.git"
},
"keywords": [
"JSON",
"schema",
"json-schema",
"form"
],
"main": "dist/index.mjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"README.md",
"dist"
],
"engines": {
"node": ">=18.14.0"
},
"scripts": {
"build": "tsup",
"dev": "NODE_ENV=development tsup --watch",
"test": "jest",
"test:watch": "jest --watchAll",
"test:file": "jest --runTestsByPath --watch",
"lint": "eslint --max-warnings 0 .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"typecheck": "tsc --noEmit",
"check": "npm run lint && npm run typecheck",
"prepare": "husky && npm run build"
},
"dependencies": {
"@remoteoss/json-schema-form": "^1.2.11",
"@remoteoss/json-schema-form-v0-deprecated": "npm:@remoteoss/json-schema-form@0.12.3-beta.0",
"date-fns": "^4.1.0"
},
"devDependencies": {
"@antfu/eslint-config": "^3.14.0",
"@babel/core": "^7.23.7",
"@babel/preset-env": "^7.23.7",
"@babel/preset-typescript": "^7.26.0",
"@jest/globals": "^29.7.0",
"@jest/test-sequencer": "^29.7.0",
"@types/jest": "^29.5.14",
"babel-jest": "^29.7.0",
"eslint": "^9.18.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"prettier": "^3.4.2",
"tsup": "^8.3.5",
"typescript": "^5.7.3"
}
}