|
| 1 | +{ |
| 2 | +"name":"winjs-plugin-example", |
| 3 | +"version":"0.0.0", |
| 4 | +"repository":"https://github.com/winjs-dev/winjs-plugin-template", |
| 5 | +"license":"MIT", |
| 6 | +"type":"module", |
| 7 | +"exports": { |
| 8 | +".": { |
| 9 | +"types":"./dist/index.d.ts", |
| 10 | +"import":"./dist/index.js", |
| 11 | +"require":"./dist/index.cjs" |
| 12 | + } |
| 13 | + }, |
| 14 | +"main":"./dist/index.cjs", |
| 15 | +"module":"./dist/index.js", |
| 16 | +"types":"./dist/index.d.ts", |
| 17 | +"files": ["dist"], |
| 18 | +"scripts": { |
| 19 | +"build":"rslib build", |
| 20 | +"dev":"rslib build --watch", |
| 21 | +"lint":"biome check .", |
| 22 | +"lint:write":"biome check . --write", |
| 23 | +"prepare":"simple-git-hooks && npm run build", |
| 24 | +"test":"playwright test", |
| 25 | +"bump":"npx bumpp" |
| 26 | + }, |
| 27 | +"simple-git-hooks": { |
| 28 | +"pre-commit":"npm run lint:write" |
| 29 | + }, |
| 30 | +"devDependencies": { |
| 31 | +"@biomejs/biome":"^1.9.4", |
| 32 | +"@playwright/test":"^1.49.0", |
| 33 | +"@winner-fed/winjs":"^0.11.21", |
| 34 | +"@winner-fed/utils":"^0.11.21", |
| 35 | +"@rslib/core":"^0.1.1", |
| 36 | +"@types/node":"^22.10.1", |
| 37 | +"playwright":"^1.49.0", |
| 38 | +"simple-git-hooks":"^2.11.1", |
| 39 | +"typescript":"^5.7.2" |
| 40 | + }, |
| 41 | +"peerDependencies": { |
| 42 | +"@rsbuild/core":"1.x", |
| 43 | +"@winner-fed/winjs":"^0.11.21", |
| 44 | +"@winner-fed/utils":"^0.11.21" |
| 45 | + }, |
| 46 | +"peerDependenciesMeta": { |
| 47 | +"@rsbuild/core": { |
| 48 | +"optional":true |
| 49 | + }, |
| 50 | +"@winner-fed/utils": { |
| 51 | +"optional":true |
| 52 | + } |
| 53 | + }, |
| 54 | +"packageManager":"pnpm@9.14.4", |
| 55 | +"publishConfig": { |
| 56 | +"access":"public", |
| 57 | +"registry":"https://registry.npmjs.org/" |
| 58 | + } |
| 59 | +} |