-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.24 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.24 KB
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
{
"name": "@css-doodle/cli",
"version": "1.12.1",
"description": "Command-line tool for css-doodle to preview and generate images/videos",
"bin": {
"css-doodle": "bin/index.js",
"cssd": "bin/index.js"
},
"scripts": {
"test": "node --test test/**/*.test.js",
"lint": "npx deno lint",
"fmt": "npx deno fmt"
},
"repository": {
"type": "git",
"url": "git+https://github.com/css-doodle/cli.git"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/css-doodle"
},
"keywords": [
"css-doodle"
],
"files": [
"bin",
"lib"
],
"author": "yuanchuan",
"license": "MIT",
"bugs": {
"url": "https://github.com/css-doodle/cli/issues"
},
"publishConfig": {
"access": "public"
},
"homepage": "https://github.com/css-doodle/cli#readme",
"type": "module",
"engines": {
"node": ">= 20.11.0"
},
"dependencies": {
"commander": "^14.0.3",
"css-doodle": "^0.50.2",
"node-watch": "^0.7.4",
"@puppeteer/browsers": "^2.11.2",
"puppeteer-core": "^24.36.1",
"ws": "^8.19.0"
},
"devDependencies": {}
}