|
1 | 1 | {
|
2 |
| - "name": "babel-transform-mutable-react-state", |
3 |
| - "version": "0.0.0", |
4 |
| - "main": "./dist/index.js", |
5 |
| - "module": "./dist/index.mjs", |
6 |
| - "types": "./dist/index.d.ts", |
7 |
| - "engines": { |
8 |
| - "node": ">=12" |
9 |
| - }, |
10 |
| - "exports": { |
11 |
| - "./package.json": "./package.json", |
12 |
| - ".": { |
13 |
| - "require": "./dist/index.js", |
14 |
| - "import": "./dist/index.mjs", |
15 |
| - "types": "./dist/index.d.ts", |
16 |
| - "default": "./dist/index.js" |
17 |
| - } |
18 |
| - }, |
19 |
| - "scripts": { |
20 |
| - "build": "tsup source/index.ts --format cjs,esm --dts --clean", |
21 |
| - "test": "ava", |
22 |
| - "fix": "npx prettier --write source/* test/*", |
23 |
| - "watch": "npm run build -- --watch source", |
24 |
| - "prepublishOnly": "npm run build" |
25 |
| - }, |
26 |
| - "dependencies": { |
27 |
| - "@babel/types": "^7.16.0" |
28 |
| - }, |
29 |
| - "devDependencies": { |
30 |
| - "@babel/core": "^7.16.5", |
31 |
| - "@babel/plugin-transform-react-jsx": "^7.16.5", |
32 |
| - "@babel/preset-env": "^7.16.5", |
33 |
| - "@babel/preset-react": "^7.16.5", |
34 |
| - "@types/babel__core": "^7.1.17", |
35 |
| - "@types/react": "^17.0.37", |
36 |
| - "ava": "^3.15.0", |
37 |
| - "prettier": "^2.5.1", |
38 |
| - "ts-node": "^10.4.0", |
39 |
| - "tsup": "^5.11.4", |
40 |
| - "typescript": "^4.5.4" |
41 |
| - }, |
42 |
| - "prettier": { |
43 |
| - "bracketSpacing": false, |
44 |
| - "semi": false, |
45 |
| - "singleQuote": true, |
46 |
| - "trailingComma": "es5", |
47 |
| - "useTabs": false |
48 |
| - }, |
49 |
| - "ava": { |
50 |
| - "extensions": { |
51 |
| - "ts": "module" |
52 |
| - }, |
53 |
| - "nonSemVerExperiments": { |
54 |
| - "configurableModuleFormat": true |
55 |
| - }, |
56 |
| - "nodeArguments": [ |
57 |
| - "--loader=ts-node/esm" |
58 |
| - ] |
59 |
| - } |
| 2 | + "name": "babel-plugin-mutable-react-state", |
| 3 | + "version": "0.0.0", |
| 4 | + "main": "./dist/index.js", |
| 5 | + "module": "./dist/index.mjs", |
| 6 | + "types": "./dist/index.d.ts", |
| 7 | + "engines": { |
| 8 | + "node": ">=12" |
| 9 | + }, |
| 10 | + "exports": { |
| 11 | + "./package.json": "./package.json", |
| 12 | + ".": { |
| 13 | + "require": "./dist/index.js", |
| 14 | + "import": "./dist/index.mjs", |
| 15 | + "types": "./dist/index.d.ts", |
| 16 | + "default": "./dist/index.js" |
| 17 | + } |
| 18 | + }, |
| 19 | + "scripts": { |
| 20 | + "build": "tsup source/index.ts --format cjs,esm --dts --clean", |
| 21 | + "test": "ava", |
| 22 | + "fix": "npx prettier --write source/* test/*", |
| 23 | + "watch": "npm run build -- --watch source", |
| 24 | + "prepublishOnly": "npm run build", |
| 25 | + "release": "np --branch dev" |
| 26 | + }, |
| 27 | + "dependencies": { |
| 28 | + "@babel/types": "^7.16.0" |
| 29 | + }, |
| 30 | + "devDependencies": { |
| 31 | + "@babel/core": "^7.16.5", |
| 32 | + "@babel/plugin-transform-react-jsx": "^7.16.5", |
| 33 | + "@babel/preset-env": "^7.16.5", |
| 34 | + "@babel/preset-react": "^7.16.5", |
| 35 | + "@types/babel__core": "^7.1.17", |
| 36 | + "@types/react": "^17.0.37", |
| 37 | + "ava": "^3.15.0", |
| 38 | + "np": "^7.6.0", |
| 39 | + "prettier": "^2.5.1", |
| 40 | + "ts-node": "^10.4.0", |
| 41 | + "tsup": "^5.11.4", |
| 42 | + "typescript": "^4.5.4" |
| 43 | + }, |
| 44 | + "prettier": { |
| 45 | + "bracketSpacing": false, |
| 46 | + "semi": false, |
| 47 | + "singleQuote": true, |
| 48 | + "trailingComma": "es5", |
| 49 | + "useTabs": false |
| 50 | + }, |
| 51 | + "ava": { |
| 52 | + "extensions": { |
| 53 | + "ts": "module" |
| 54 | + }, |
| 55 | + "nonSemVerExperiments": { |
| 56 | + "configurableModuleFormat": true |
| 57 | + }, |
| 58 | + "nodeArguments": [ |
| 59 | + "--loader=ts-node/esm" |
| 60 | + ] |
| 61 | + } |
60 | 62 | }
|
0 commit comments