-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
35 lines (35 loc) · 883 Bytes
/
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
{
"name": "sourcesyncjs",
"version": "0.0.3",
"description": "Tool to bidirectionally sync changes in CSS files between browser's DevTools and Sass/PostCSS/etc sources",
"main": "src/index.js",
"scripts": {
"start": "node src/index.js",
"build:css": "lightningcss --bundle --sourcemap ./src/style.css -o ./website/assets/output.css",
"test": "echo \"Error: no test specified\" && exit 1"
},
"bin": {
"sourcesync": "./bin/cli.js"
},
"repository": {
"type": "git",
"url": "https://github.com/m5x5/sourcesync.git"
},
"keywords": [
"devtools",
"source",
"sync"
],
"author": "m5x5 <[email protected]>",
"license": "MIT",
"dependencies": {
"debug": "^4.3.4",
"diff": "^5.1.0",
"lightningcss": "^1.21.5",
"source-map": "^0.7.4"
},
"devDependencies": {
"typescript": "^5.0.2"
},
"type": "module"
}