-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1018 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 1018 Bytes
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
{
"private": true,
"name": "ansi-escape-code",
"version": "0.0.9",
"description": "Effortless ANSI styling with nesting support",
"repository": {
"type": "git",
"url": "https://github.com/basic-examples/ansi-escape-code.git"
},
"license": "MIT",
"scripts": {
"build": "rimraf dist && rollup -c && cpy npm.md dist --rename=README.md && package-json-minifier",
"publish": "npm run build && cd dist && npm publish",
"test": "cd test && npm start"
},
"peerDependencies": {
"@ansi-escape-code/type": "^3.0.0"
},
"peerDependenciesMeta": {
"@ansi-escape-code/type": {
"optional": true
}
},
"devDependencies": {
"@ansi-escape-code/type": "^3.0.0",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.4",
"@types/node": "^24.1.0",
"cpy-cli": "^5.0.0",
"package.json-minifier": "^0.0.4",
"rimraf": "^6.0.1",
"rollup": "^4.46.2",
"tslib": "^2.8.1",
"typedoc": "^0.28.9",
"typescript": "^5.8.3"
}
}