forked from prismicio/prismic-ts-codegen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 2.5 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "prismic-ts-codegen",
"version": "0.0.3",
"description": "An experimental Prismic model-to-TypeScript-type generator",
"keywords": [
"typescript",
"prismic"
],
"repository": {
"type": "git",
"url": "ssh://[email protected]/prismicio/prismic-ts-codegen.git"
},
"license": "Apache-2.0",
"author": "Prismic <[email protected]> (https://prismic.io)",
"type": "module",
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.js"
},
"./package.json": "./package.json"
},
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"prismic-ts-codegen": "bin/cli.mjs"
},
"files": [
"dist",
"src"
],
"scripts": {
"build": "siroc build",
"dev": "siroc build --watch",
"format": "prettier --write .",
"lint": "eslint --ext .js,.ts .",
"prepare": "npm run build",
"release": "npm run test && standard-version && git push --follow-tags && npm run build && npm publish",
"release:alpha": "npm run test && standard-version --release-as major --prerelease alpha && git push --follow-tags && npm run build && npm publish --tag alpha",
"release:alpha:dry": "standard-version --release-as major --prerelease alpha --dry-run",
"release:dry": "standard-version --dry-run",
"size": "size-limit",
"test": "npm run lint && npm run unit && npm run build && npm run size",
"unit": "nyc --reporter=lcovonly --reporter=text --exclude-after-remap=false ava"
},
"dependencies": {
"@prismicio/client": "^6.4.3",
"@prismicio/custom-types-client": "^0.0.7",
"common-tags": "^1.8.2",
"fast-glob": "^3.2.11",
"jiti": "^1.13.0",
"joi": "^17.6.0",
"meow": "^10.1.2",
"node-fetch": "^3.2.4",
"pascal-case": "^3.1.2",
"prettier": "^2.6.2",
"ts-morph": "^14.0.0"
},
"devDependencies": {
"@prismicio/mock": "^0.0.10",
"@prismicio/types": "^0.1.27",
"@size-limit/preset-small-lib": "^7.0.8",
"@types/common-tags": "^1.8.1",
"@types/prettier": "^2.6.1",
"@typescript-eslint/eslint-plugin": "^5.25.0",
"@typescript-eslint/parser": "^5.25.0",
"ava": "^4.2.0",
"esbuild-register": "^3.3.2",
"eslint": "^8.15.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-tsdoc": "^0.2.16",
"nyc": "^15.1.0",
"prettier-plugin-jsdoc": "^0.3.38",
"siroc": "^0.16.0",
"size-limit": "^7.0.8",
"standard-version": "^9.5.0",
"typescript": "^4.6.4"
},
"peerDependencies": {
"@prismicio/types": "^0.1.25"
},
"engines": {
"node": ">=12.7.0"
},
"publishConfig": {
"access": "public"
}
}