|
8 | 8 | "url": "https://github.com/near/pagoda-ui"
|
9 | 9 | },
|
10 | 10 | "keywords": ["react", "component", "library", "near", "pagoda"],
|
| 11 | + "scripts": { |
| 12 | + "dev": "rollup -c -w", |
| 13 | + "build": "rollup -c", |
| 14 | + "format": "prettier --check ./src", |
| 15 | + "format:fix": "prettier --write ./src", |
| 16 | + "lint": "eslint ./src/**/*.ts*", |
| 17 | + "lint:fix": "eslint . --fix", |
| 18 | + "pre-commit": "pnpm format && pnpm lint --max-warnings 0 && pnpm ts:check", |
| 19 | + "test": "pnpm pre-commit", |
| 20 | + "ts:check": "tsc --noEmit --incremental", |
| 21 | + "prepare": "husky" |
| 22 | + }, |
| 23 | + "engines": { |
| 24 | + "node": ">=20", |
| 25 | + "pnpm": "9.1.1" |
| 26 | + }, |
| 27 | + "packageManager": "[email protected]", |
11 | 28 | "files": ["dist"],
|
12 | 29 | "main": "dist/index.cjs.js",
|
13 | 30 | "module": "dist/index.esm.js",
|
|
28 | 45 | "require": "./dist/*.css"
|
29 | 46 | }
|
30 | 47 | },
|
31 |
| - "scripts": { |
32 |
| - "dev": "rollup -c -w", |
33 |
| - "build": "rollup -c", |
34 |
| - "format": "prettier --check ./src", |
35 |
| - "format:fix": "prettier --write ./src", |
36 |
| - "lint": "eslint ./src/**/*.ts*", |
37 |
| - "lint:fix": "eslint . --fix", |
38 |
| - "pre-commit": "pnpm format && pnpm lint --max-warnings 0 && pnpm ts:check", |
39 |
| - "ts:check": "tsc --noEmit --incremental", |
40 |
| - "prepare": "husky" |
41 |
| - }, |
42 | 48 | "peerDependencies": {
|
43 | 49 | "next": ">=13",
|
44 | 50 | "react": "^18",
|
|
0 commit comments