-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.32 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.32 KB
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
{
"name": "@payload-bites/content-freeze",
"description": "make sure your team are putting the tools down during critical moments",
"version": "1.2.0",
"author": "Riley Langbein <rilrom-dev@protonmail.com>",
"repository": {
"type": "git",
"url": "git+https://github.com/rilrom/payload-bites.git"
},
"bugs": "https://github.com/rilrom/payload-bites/issues",
"homepage": "https://github.com/rilrom/payload-bites/blob/main/packages/content-freeze#readme",
"keywords": [
"payload",
"payloadcms",
"payload-plugin"
],
"type": "module",
"private": false,
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./rsc": {
"import": "./dist/exports/rsc.js",
"types": "./dist/exports/rsc.d.ts",
"default": "./dist/exports/rsc.js"
}
},
"files": [
"dist"
],
"scripts": {
"build": "pnpm clean && pnpm copyfiles && pnpm build:types && pnpm build:swc",
"build:swc": "swc ./src -d ./dist --config-file .swcrc --strip-leading-paths",
"build:types": "tsc --outDir dist --rootDir ./src",
"dev": "pnpm clean && pnpm copyfiles && pnpm dev:types && pnpm dev:swc",
"dev:swc": "swc ./src -d ./dist --config-file .swcrc --strip-leading-paths --watch",
"dev:types": "tsc --outDir dist --rootDir ./src --watch",
"copyfiles": "copyfiles -u 1 \"src/**/*.{html,css,scss,ttf,woff,woff2,eot,svg,jpg,png,json}\" dist/",
"clean": "rm -rf dist && rm -rf tsconfig.tsbuildinfo",
"lint": "pnpm lint:biome && pnpm lint:styles",
"lint:biome": "biome check --write .",
"lint:styles": "stylelint --fix=strict \"**/*.scss\"",
"check-types": "tsc --noEmit",
"test": "pnpm test:e2e",
"test:e2e": "playwright test"
},
"devDependencies": {
"@payload-bites/playwright-utilities": "workspace:*",
"@payload-bites/typescript-config": "workspace:*",
"@playwright/test": "^1.58.2",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"dotenv": "^17.3.1",
"get-port": "^7.1.0",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"typescript": "5.9.3"
},
"peerDependencies": {
"@payloadcms/translations": "^3",
"@payloadcms/ui": "^3",
"next": "^15.2.8 || ^15.3.8 || ^15.4.10 || ^15.5.9",
"payload": "^3",
"react": "^19.0.1 || ^19.1.2 || ^19.2.1",
"react-dom": "^19.0.1 || ^19.1.2 || ^19.2.1"
}
}