-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·70 lines (70 loc) · 1.81 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
62
63
64
65
66
67
68
69
70
{
"name": "@websublime/forms",
"version": "0.0.3",
"source": "./src",
"main": "./dist/forms.cjs.js",
"module": "./dist/forms.esm.js",
"types": "./dist/@types/index.d.ts",
"files": [
"dist/",
"./LICENSE.md",
"./README.md"
],
"scripts": {
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:serve": "vitepress serve docs",
"docs": "api-documenter markdown --input-folder dist --output-folder docs/api",
"build": "yarn types && node scripts/build.js && yarn docs",
"types": "tsc --emitDeclarationOnly",
"test": "jest --verbose -i",
"release": "yarn changeset publish",
"debug": "node --inspect-brk $(npm bin)/jest --no-cache --runInBand"
},
"dependencies": {
"@websublime/schema": "^1.1.0"
},
"devDependencies": {
"@changesets/changelog-github": "^0.3.0",
"@changesets/cli": "^2.14.1",
"@changesets/get-github-info": "^0.5.0",
"@microsoft/api-documenter": "^7.11.0",
"@microsoft/api-extractor": "^7.12.0",
"@types/fs-extra": "^9.0.4",
"@types/jest": "^27.0.1",
"@types/node": "^16.11.12",
"esbuild": "^0.14.23",
"fs-extra": "^10.0.1",
"jest": "^27.5.1",
"ts-jest": "^27.1.3",
"typescript": "^4.5.2",
"vitepress": "^0.22.3"
},
"bugs": {
"url": "https://github.com/websublime/forms/issues"
},
"description": "Forms model",
"keywords": [
"typescript",
"forms",
"agnostic",
"lib"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/websublime/forms"
},
"author": {
"email": "huzgo1@gmail.com",
"name": "Hugo Lago",
"url": "https://github.com/Hulago"
},
"contributors": [
{
"email": "miguel.marques.ramos@gmail.com",
"name": "Miguel Ramos",
"url": "https://miguelramos.dev"
}
]
}