-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
133 lines (133 loc) · 3.75 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
{
"name": "@prismicio/upgrade-from-legacy",
"version": "0.0.3",
"description": "A tool to ease upgrade to Slice Machine",
"keywords": [
"typescript",
"prismic"
],
"repository": {
"type": "git",
"url": "ssh://[email protected]/prismicio/prismic-upgrade-from-legacy.git"
},
"license": "Apache-2.0",
"author": "Prismic <[email protected]> (https://prismic.io)",
"type": "module",
"exports": {
".": {
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.cjs"
},
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"./cli": {
"require": {
"types": "./dist/cli.d.ts",
"default": "./dist/cli.cjs"
},
"import": {
"types": "./dist/cli.d.ts",
"default": "./dist/cli.js"
}
},
"./package.json": "./package.json"
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"prismic-upgrade-from-legacy": "./bin/prismic-upgrade-from-legacy.js"
},
"files": [
"./bin",
"./dist",
"./src"
],
"scripts": {
"build": "npm run build:cli && npm run build:gui",
"build:gui": "vite build gui",
"build:cli": "vite build",
"dev": "concurrently npm:dev:* --prefix-colors cyan,dim",
"dev:gui": "vite gui",
"dev:cli": "vite build --watch --mode development",
"format": "prettier --write .",
"prepare": "npm run build",
"release": "npm run test && standard-version && git push --follow-tags && npm run build && npm publish",
"release:dry": "standard-version --dry-run",
"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",
"lint": "eslint --ext .js,.ts,.tsx .",
"types": "vitest typecheck --run && tsc --noEmit",
"types:watch": "vitest typecheck",
"unit": "vitest run --coverage",
"unit:watch": "vitest watch",
"size": "size-limit",
"test": "npm run lint && npm run types && npm run unit && npm run build && npm run size"
},
"dependencies": {
"@lihbr/listr-update-renderer": "^0.5.3",
"@prismicio/types-internal": "^2.0.0",
"@slicemachine/manager": "^0.10.0",
"chalk": "^4.1.2",
"cors": "^2.8.5",
"express": "^4.18.2",
"get-port-please": "^3.0.2",
"http-proxy-middleware": "^2.0.6",
"listr": "^0.14.3",
"log-symbols": "^4.1.0",
"meow": "^12.1.1",
"open": "^8.4.2",
"prompts": "^2.4.2",
"serve-static": "^1.15.0"
},
"devDependencies": {
"@prismicio/editor-ui": "^0.4.9",
"@size-limit/preset-small-lib": "^8.2.6",
"@trivago/prettier-plugin-sort-imports": "^4.2.0",
"@types/cors": "^2.8.14",
"@types/express": "^4.17.17",
"@types/listr": "0.14.5",
"@types/nodemon": "^1.19.2",
"@types/prompts": "2.4.4",
"@types/react": "^18.2.21",
"@types/react-dom": "^18.2.7",
"@types/serve-static": "^1.15.2",
"@typescript-eslint/eslint-plugin": "^6.6.0",
"@typescript-eslint/parser": "^6.6.0",
"@vitejs/plugin-react": "^4.0.4",
"@vitest/coverage-v8": "^0.34.3",
"autoprefixer": "^10.4.15",
"clsx": "^2.0.0",
"concurrently": "^8.2.1",
"eslint": "^8.48.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.3",
"eslint-plugin-tsdoc": "^0.2.17",
"nodemon": "^3.0.1",
"postcss": "^8.4.29",
"prettier": "^3.0.3",
"prettier-plugin-jsdoc": "^1.0.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"size-limit": "^8.2.6",
"standard-version": "^9.5.0",
"tailwindcss": "^3.3.3",
"typescript": "^5.1.6",
"vite": "^4.4.9",
"vite-plugin-sdk": "^0.1.1",
"vitest": "^0.34.3",
"zustand": "^4.4.1"
},
"engines": {
"node": ">=14.15.0"
},
"publishConfig": {
"access": "public"
}
}