|
11 | 11 | "homepage": "https://github.com/rollup/plugins/tree/master/packages/data-uri",
|
12 | 12 | "bugs": "https://github.com/rollup/plugins/issues",
|
13 | 13 | "main": "dist/index.js",
|
| 14 | + "module": "dist/index.es.js", |
14 | 15 | "engines": {
|
15 | 16 | "node": ">= 8.0.0"
|
16 | 17 | },
|
|
21 | 22 | "ci:lint:commits": "commitlint --from=${CIRCLE_BRANCH} --to=${CIRCLE_SHA1}",
|
22 | 23 | "ci:test": "pnpm run test -- --verbose",
|
23 | 24 | "lint": "pnpm run lint:js && pnpm run lint:docs && pnpm run lint:package",
|
24 |
| - "lint:docs": "prettier --single-quote --write README.md", |
| 25 | + "lint:docs": "prettier --single-quote --arrow-parens avoid --write README.md", |
25 | 26 | "lint:js": "eslint --fix --cache src test types --ext .js,.ts",
|
26 | 27 | "lint:package": "prettier --write package.json --plugin=prettier-plugin-package",
|
27 | 28 | "prebuild": "del-cli dist",
|
|
48 | 49 | "rollup": "^1.20.0||^2.0.0"
|
49 | 50 | },
|
50 | 51 | "devDependencies": {
|
51 |
| - "@rollup/plugin-typescript": "^3.0.0", |
| 52 | + "@rollup/plugin-typescript": "^5.0.2", |
52 | 53 | "@rollup/pluginutils": "^3.0.1",
|
53 |
| - "rollup": "^2.0.0", |
54 |
| - "typescript": "^3.7.4" |
| 54 | + "rollup": "^2.23.0" |
55 | 55 | },
|
| 56 | + "types": "types/index.d.ts", |
56 | 57 | "ava": {
|
57 |
| - "compileEnhancements": false, |
| 58 | + "babel": { |
| 59 | + "compileEnhancements": false |
| 60 | + }, |
58 | 61 | "extensions": [
|
59 | 62 | "ts"
|
60 | 63 | ],
|
|
68 | 71 | "!**/recipes/**",
|
69 | 72 | "!**/types.ts"
|
70 | 73 | ]
|
71 |
| - }, |
72 |
| - "module": "dist/index.es.js", |
73 |
| - "types": "types/index.d.ts" |
| 74 | + } |
74 | 75 | }
|
0 commit comments