-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
80 lines (80 loc) · 2.19 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
{
"name": "@prismicio/richtext",
"version": "2.1.5",
"description": "A parser and serializer for Prismic's Rich Text format",
"keywords": [
"typescript",
"prismic"
],
"repository": {
"type": "git",
"url": "ssh://[email protected]/prismicio/prismic-richtext.git"
},
"license": "Apache-2.0",
"author": "Prismic <[email protected]> (https://prismic.io)",
"sideEffects": false,
"type": "module",
"exports": {
".": {
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.cjs"
},
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"./package.json": "./package.json"
},
"main": "dist/index.cjs",
"module": "dist/index.js",
"react-native": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"scripts": {
"build": "vite build",
"dev": "vite 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:beta": "npm run test && standard-version --release-as major --prerelease beta && git push --follow-tags && npm run build && npm publish --tag beta",
"release:beta:dry": "standard-version --release-as major --prerelease beta --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": "vitest run --coverage",
"unit:watch": "vitest watch"
},
"dependencies": {
"@prismicio/types": "^0.2.7"
},
"devDependencies": {
"@size-limit/preset-small-lib": "^8.1.1",
"@typescript-eslint/eslint-plugin": "^5.48.1",
"@typescript-eslint/parser": "^5.48.1",
"@vitest/coverage-c8": "^0.27.1",
"eslint": "^8.31.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-tsdoc": "^0.2.17",
"prettier": "^2.8.2",
"prettier-plugin-jsdoc": "^0.4.2",
"size-limit": "^8.1.1",
"standard-version": "^9.5.0",
"typescript": "^4.9.4",
"vite": "^4.0.4",
"vite-plugin-sdk": "^0.1.0",
"vitest": "^0.27.1"
},
"engines": {
"node": ">=12.7.0"
},
"publishConfig": {
"access": "public"
}
}