-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.56 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
{
"name": "@metadev/essential-core",
"version": "1.0.3",
"bugs": {
"url": "https://github.com/metadevpro/essential-core/issues"
},
"repository": {
"type": "git",
"url": "[email protected]:metadevpro/essential-core.git"
},
"author": "https://metadev.pro",
"license": "apache-2.0",
"type": "module",
"description": "Core SDK Metamodeling Framework. Essential",
"scripts": {
"build": "tsup",
"lint": "eslint src",
"test": "mocha --require tsx \"src/**/*.spec.ts\"",
"coverage": "nyc --reporter=html mocha --require tsx \"src/**/*.spec.ts\"",
"prepublish": "npm run lint && npm run test && npm run build",
"publish": "npm publish . --access=public"
},
"keywords": [
"mde",
"essential",
"metadev"
],
"devDependencies": {
"@eslint/js": "^9.17.0",
"@swc/core": "^1.10.6",
"@types/chai": "^5.0.1",
"@types/mocha": "^10.0.10",
"@types/node": "^22.10.5",
"chai": "^5.1.2",
"eslint": "^9.17.0",
"mocha": "^11.0.1",
"nyc": "^17.1.0",
"tsup": "^8.3.5",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.19.1"
},
"es2015": "./dist/index.js",
"main": "./dist/index.js",
"module": "./dist/index.cjs",
"types": "./dist/index.d.ts",
"files": [
"README.md",
"package.json",
"dist/**"
],
"tsup": {
"entry": [
"src/**/*.ts",
"!src/**/*.spec.ts"
],
"format": [
"esm",
"cjs"
],
"dts": true,
"splitting": false,
"sourcemap": true,
"clean": true,
"minify": true,
"treeshake": true
}
}