|
1 | | -{ |
2 | | - "name": "tsky", |
3 | | - "type": "module", |
4 | | - "version": "0.0.1", |
5 | | - "license": "MIT", |
6 | | - "exports": { |
7 | | - ".": { |
8 | | - "default": { |
9 | | - "types": "./dist/index.d.ts", |
10 | | - "import": "./dist/index.js" |
11 | | - } |
12 | | - } |
13 | | - }, |
14 | | - "module": "dist/index.js", |
15 | | - "types": "dist/index.d.ts", |
16 | | - "files": ["dist"], |
17 | | - "scripts": { |
18 | | - "build": "tsc", |
19 | | - "lint": "eslint ./src", |
20 | | - "lint:fix": "eslint ./src --fix", |
21 | | - "test": "vitest", |
22 | | - "test:typescript": "tsc --noEmit" |
23 | | - }, |
24 | | - "devDependencies": { |
25 | | - "@atproto/api": "^0.13.18", |
26 | | - "globals": "^15.12.0", |
27 | | - "tsx": "^4.19.2", |
28 | | - "typescript": "^5.7.2", |
29 | | - "vitest": "^2.1.6" |
30 | | - } |
31 | | -} |
| 1 | +{ |
| 2 | + "name": "tsky", |
| 3 | + "type": "module", |
| 4 | + "version": "0.0.1", |
| 5 | + "license": "MIT", |
| 6 | + "exports": { |
| 7 | + ".": { |
| 8 | + "import": { |
| 9 | + "types": "./dist/index.d.ts", |
| 10 | + "default": "./dist/index.js" |
| 11 | + }, |
| 12 | + "require": { |
| 13 | + "types": "./dist/index.d.cts", |
| 14 | + "default": "./dist/index.cjs" |
| 15 | + } |
| 16 | + } |
| 17 | + }, |
| 18 | + "main": "dist/index.cjs", |
| 19 | + "module": "dist/index.js", |
| 20 | + "types": "dist/index.d.ts", |
| 21 | + "files": [ |
| 22 | + "dist" |
| 23 | + ], |
| 24 | + "scripts": { |
| 25 | + "build": "pkgroll", |
| 26 | + "lint": "eslint ./src", |
| 27 | + "lint:fix": "eslint ./src --fix", |
| 28 | + "test": "vitest", |
| 29 | + "test:typescript": "tsc --noEmit" |
| 30 | + }, |
| 31 | + "dependencies": { |
| 32 | + "@atproto/api": "^0.13.18" |
| 33 | + }, |
| 34 | + "devDependencies": { |
| 35 | + "globals": "^15.12.0", |
| 36 | + "pkgroll": "^2.5.1", |
| 37 | + "tsx": "^4.19.2", |
| 38 | + "typescript": "^5.7.2", |
| 39 | + "vitest": "^2.1.6" |
| 40 | + } |
| 41 | +} |
0 commit comments