-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.8 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.8 KB
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
{
"name": "impresso-jscommons",
"version": "1.14.0",
"description": "Code shared between the middle layer and frontend",
"private": true,
"main": "dist/impresso-jscommons.cjs.js",
"module": "dist/impresso-jscommons.esm.js",
"browser": "dist/impresso-jscommons.min.js",
"unpkg": "dist/impresso-jscommons.min.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/impresso-jscommons.esm.js",
"require": "./dist/impresso-jscommons.cjs.js",
"types": "./dist/index.d.ts"
}
},
"author": "Roman Kalyakin <[email protected]>",
"scripts": {
"compile": "npx buf generate",
"test": "jest",
"build": "npm run build:js && copyfiles -u 1 src/**/*.d.ts dist",
"build:js": "rollup --bundleConfigAsCjs --config rollup.config.js --configPlugin typescript --configImportAttributesKey with --environment NODE_ENV:production",
"watch": "npm run watch:js",
"watch:js": "rollup --bundleConfigAsCjs --config rollup.config.js --configPlugin typescript --configImportAttributesKey with --watch",
"lint": "eslint src test",
"typecheck": "tsc -p tsconfig.dev.json"
},
"dependencies": {
"@bufbuild/protobuf": "2.11.0",
"case": "1.6.3"
},
"devDependencies": {
"@babel/core": "7",
"@babel/preset-env": "7",
"@bufbuild/buf": "^1.68.3",
"@bufbuild/protoc-gen-es": "^2.11.0",
"@eslint/js": "^9.21.0",
"@rollup/plugin-babel": "6",
"@rollup/plugin-commonjs": "28",
"@rollup/plugin-node-resolve": "16",
"@rollup/plugin-terser": "0",
"@rollup/plugin-typescript": "12",
"@types/jest": "^30.0.0",
"copyfiles": "^2.4.1",
"eslint": "9",
"globals": "^16.4.0",
"jest": "^30.2.0",
"rollup": "4",
"ts-jest": "^29.4.9",
"tslib": "2",
"typescript": "6",
"typescript-eslint": "^8.59.0"
}
}