-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 2.19 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "@publicodes/tools",
"version": "1.2.5",
"description": "A set of utility functions to build tools around Publicodes models",
"type": "module",
"main": "dist/index.js",
"scripts": {
"build": "tsup",
"watch": "tsup --watch",
"clean": "rm -rf dist docs",
"test": "jest",
"docs": "typedoc",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"engines": {
"node": ">=17"
},
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
},
"./optims": {
"import": "./dist/optims/index.js",
"require": "./dist/optims/index.cjs",
"types": "./dist/optims/index.d.ts"
},
"./compilation": {
"import": "./dist/compilation/index.js",
"require": "./dist/compilation/index.cjs",
"types": "./dist/compilation/index.d.ts"
},
"./migration": {
"import": "./dist/migration/index.js",
"require": "./dist/migration/index.cjs",
"types": "./dist/migration/index.d.ts"
}
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/publicodes/tools.git"
},
"bugs": "https://github.com/publicodes/tools/issues",
"keywords": [
"compilation",
"optimization",
"publicodes",
"scripting",
"tooling"
],
"author": "Emile Rolley <emile.rolley@tuta.io>",
"license": "MIT",
"dependencies": {
"@types/node": "^18.11.18",
"glob": "^10.4.1",
"path": "^0.12.7",
"publicodes": "^1.3.3",
"yaml": "^2.4.5"
},
"devDependencies": {
"@types/jest": "^29.2.5",
"docdash": "^2.0.1",
"jest": "^29.4.1",
"prettier": "^3.0.0",
"ts-jest": "^29.0.4",
"ts-node": "^10.9.2",
"tsup": "^8.0.2",
"typedoc": "^0.24.8",
"typedoc-plugin-export-functions": "^1.0.0",
"typescript": "^4.9.4"
},
"tsup": {
"entry": [
"src/index.ts",
"src/optims/index.ts",
"src/compilation/index.ts",
"src/migration/index.ts"
],
"format": [
"cjs",
"esm"
],
"sourceMap": true,
"dts": true,
"clean": true,
"cjsInterop": true
},
"publishConfig": {
"access": "public"
}
}