|
1 | 1 | { |
2 | 2 | "name": "@kleros/kleros-app", |
3 | 3 | "version": "1.0.0", |
4 | | - "repository": { |
5 | | - "type": "git", |
6 | | - "url": "git+ssh://git@github.com/kleros/kleros-v2.git" |
7 | | - }, |
8 | | - "keywords": [ |
9 | | - "kleros", |
10 | | - "dapp", |
11 | | - "atlas" |
12 | | - ], |
| 4 | + "description": "Library for Kleros DApps with reusable abstractions and components.", |
| 5 | + "repository": "git@github.com:kleros/kleros-v2.git", |
| 6 | + "homepage": "https://github.com/kleros/kleros-v2/tree/master/kleros-app#readme", |
13 | 7 | "author": "Kleros", |
14 | 8 | "license": "MIT", |
15 | | - "bugs": { |
16 | | - "url": "https://github.com/kleros/kleros-v2/issues" |
17 | | - }, |
18 | | - "homepage": "https://github.com/kleros/kleros-v2#readme", |
19 | | - "description": "Library for Kleros DApps with reusable abstractions and components.", |
20 | 9 | "source": "src/lib/index.ts", |
21 | | - "module": "./dist/kleros-app.js", |
22 | 10 | "types": "./dist/kleros-app.d.ts", |
| 11 | + "module": "./dist/kleros-app.js", |
| 12 | + "files": [ |
| 13 | + "dist" |
| 14 | + ], |
23 | 15 | "type": "module", |
| 16 | + "volta": { |
| 17 | + "node": "20.11.0" |
| 18 | + }, |
| 19 | + "publishConfig": { |
| 20 | + "access": "public", |
| 21 | + "tag": "latest" |
| 22 | + }, |
24 | 23 | "scripts": { |
25 | | - "clean": "rm -rf dist", |
| 24 | + "clean": "rimraf dist", |
26 | 25 | "check-style": "eslint 'src/**/*.{ts,tsx}'", |
27 | 26 | "check-types": "tsc --noEmit", |
28 | 27 | "start": "vite dev src/", |
29 | | - "build": "yarn clean && vite build" |
| 28 | + "build": "yarn clean && vite build", |
| 29 | + "release:patch": "scripts/publish.sh patch", |
| 30 | + "release:minor": "scripts/publish.sh minor", |
| 31 | + "release:major": "scripts/publish.sh major" |
30 | 32 | }, |
31 | | - "files": [ |
32 | | - "dist" |
33 | | - ], |
34 | 33 | "prettier": "@kleros/kleros-v2-prettier-config", |
35 | 34 | "devDependencies": { |
36 | 35 | "@eslint/compat": "^1.2.3", |
|
46 | 45 | "eslint-config-prettier": "^9.1.0", |
47 | 46 | "eslint-plugin-import": "^2.31.0", |
48 | 47 | "globals": "^15.12.0", |
| 48 | + "rimraf": "^6.0.1", |
49 | 49 | "typescript": "^5.6.3", |
50 | 50 | "vite": "^5.4.11", |
51 | 51 | "vite-plugin-dts": "^4.3.0", |
|
0 commit comments