generated from toastyboost/rollup-starter
-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
82 lines (82 loc) · 2.12 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "effector-logger",
"version": "0.0.0-real-version-will-be-set-on-ci",
"main": "./index.js",
"module": "./index.mjs",
"typings": "./index.d.ts",
"license": "MIT",
"repository": "github:effector/logger",
"publishConfig": {
"access": "public"
},
"scripts": {
"start": "vite ./usage",
"build": "rm -rf ./dist && ts-node ./scripts/build.ts",
"lint": "eslint --ext .ts,.tsx src",
"test": "vitest run",
"commit": "git-cz",
"prepublish": "pnpm build"
},
"packageManager": "[email protected]",
"peerDependencies": {
"effector": "^22.8.8 || ^23.0.0"
},
"devDependencies": {
"@babel/core": "^7.13.10",
"@babel/eslint-parser": "^7.13.10",
"@commitlint/cli": "8.2.0",
"@commitlint/config-conventional": "8.2.0",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-commonjs": "^20.0.0",
"@rollup/plugin-node-resolve": "^13.0.4",
"@rollup/plugin-typescript": "^8.2.5",
"@types/babel__core": "^7.1.19",
"@types/detect-node": "^2.0.0",
"@types/jest": "^29.4.0",
"@types/node": "^18.14.2",
"@types/set-value": "^2.0.0",
"@typescript-eslint/eslint-plugin": "^2.16.0",
"@typescript-eslint/parser": "^2.16.0",
"babel-plugin-module-resolver": "^4.1.0",
"babel-plugin-tester": "^10.0.0",
"commitizen": "4.0.3",
"cz-conventional-changelog": "3.0.2",
"effector": "^23.0.0",
"eslint": "^6.6.0",
"eslint-plugin-prettier": "^3.1.2",
"husky": "3.1.0",
"jest": "^29.3.1",
"prettier": "^2.1.2",
"rollup": "^2.79.1",
"rollup-plugin-terser": "^7.0.2",
"ts-node": "^10.4.0",
"typescript": "^4.9.5",
"vite": "^3.1.8",
"vitest": "^0.31.0"
},
"dependencies": {
"detect-node": "2.0.4",
"just-debounce-it": "^1.1.0"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"files": [
"index.js",
"index.js.map",
"index.mjs",
"index.mjs.map",
"index.d.ts"
],
"exports": {
".": {
"types": "./index.d.ts",
"import": "./index.mjs",
"require": "./index.js",
"default": "./index.mjs"
},
"./index.mjs": "./index.mjs"
}
}