This repository was archived by the owner on Feb 14, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
129 lines (129 loc) · 3.06 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "@publicodes/tools",
"version": "1.4.0",
"description": "A CLI tool for Publicodes",
"type": "module",
"main": "publicodes-build/index.js",
"bin": {
"publicodes": "./bin/run.js"
},
"files": [
"publicodes-build",
"dist",
"bin",
"quick-doc"
],
"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"
}
},
"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",
"scripts": {
"build": "tsup",
"watch": "tsup --watch",
"clean": "rm -rf dist docs",
"test": "vitest run --globals",
"docs": "typedoc",
"format": "prettier --write .",
"format:check": "prettier --check .",
"compile": "publicodes compile",
"dev": "publicodes dev"
},
"engines": {
"node": ">=17"
},
"dependencies": {
"@clack/prompts": "^0.7.0",
"@oclif/core": "^4.0.23",
"@publicodes/react-ui": "^1.5.4",
"@tailwindcss/typography": "^0.5.16",
"@tailwindcss/vite": "^4.0.0",
"@types/node": "^18.11.18",
"chalk": "^5.3.0",
"chokidar": "^4.0.3",
"glob": "^10.4.1",
"path": "^0.12.7",
"publicodes": "^1.6.1",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-router-dom": "^7.1.3",
"tailwindcss": "^4.0.0",
"vite": "^6.0.11",
"yaml": "^2.7.0"
},
"devDependencies": {
"@oclif/test": "^4.0.9",
"@types/jest": "^29.5.13",
"@types/react": "^19.0.8",
"docdash": "^2.0.1",
"prettier": "^3.4.2",
"ts-node": "^10.9.2",
"tsup": "^8.0.2",
"typedoc": "^0.24.8",
"typedoc-plugin-export-functions": "^1.0.0",
"typescript": "^4.9.4",
"vitest": "^2.1.2"
},
"tsup": {
"entry": [
"src/index.ts",
"src/optims/index.ts",
"src/compilation/index.ts",
"src/migration/index.ts",
"src/commands"
],
"format": [
"cjs",
"esm"
],
"sourceMap": true,
"dts": true,
"clean": true,
"cjsInterop": true
},
"oclif": {
"bin": "publicodes",
"commands": "./dist/commands",
"dirname": "publicodes",
"topicSeparator": ":"
},
"publishConfig": {
"access": "public"
},
"packageManager": "yarn@1.22.19+sha1.4ba7fc5c6e704fce2066ecbfb0b0d8976fe62447",
"types": "publicodes-build/index.d.ts",
"peerDependencies": {
"publicodes": "^1.5.1"
}
}