-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.15 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
{
"name": "kiss-framework",
"version": "1.2.7",
"description": "Decorator based framework for data processing",
"main": "./dist/index.js",
"module": "./dist/index.esm.js",
"typеs": "./dist/index.d.ts",
"type": "module",
"exports": {
".": {
"module": "./dist/index.esm.js",
"default": "./dist/index.js"
},
"./**": "./",
"./dist/index.js": "./dist/index.esm.js",
"./dist/index.d.ts": "./dist/index.d.ts",
"./package.json": "./package.json"
},
"scripts": {
"build": "tsc",
"build:esm": "tsc && webpack --config webpack.config.js",
"test": "tsc && find ./dist/tests -name \"*.js\" -exec node {} \\;",
"check-circular": "madge --circular --image graph.svg --extensions ts ./src",
"prepublish": "npm run build:esm"
},
"author": "H. Faddeev",
"license": "CC0 1.0 Universal",
"devDependencies": {
"madge": "^8.0.0",
"terser-webpack-plugin": "^5.3.10",
"ts-loader": "^9.5.1",
"typescript": "^5.6.3",
"webpack": "^5.96.1",
"webpack-bundle-analyzer": "^4.10.2",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"tslib": "^2.8.1"
},
"packageManager": "[email protected]"
}