-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·68 lines (68 loc) · 1.73 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
{
"name": "@websublime/schema",
"version": "1.2.1",
"source": "./src",
"main": "./dist/schema.cjs.js",
"module": "./dist/schema.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"
},
"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": "^26.1.0",
"ts-jest": "^26.1.1",
"typescript": "^4.5.2"
},
"bugs": {
"url": "https://github.com/websublime/schema/issues"
},
"description": "Typescript data rules validation",
"keywords": [
"typescript",
"validation",
"schema",
"lib"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/websublime/schema"
},
"author": {
"email": "miguel.marques.ramos@gmail.com",
"name": "Miguel Ramos",
"url": "https://miguelramos.dev"
},
"contributors": [
{
"email": "huzgo1@gmail.com",
"name": "Hugo Lago",
"url": "https://github.com/Hulago"
}
],
"dependencies": {
"vitepress": "^0.22.3"
}
}