-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 920 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 920 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
{
"name": "acode-plugin-sass",
"version": "1.0.5",
"description": "SASS compiler for Acode.",
"main": "dist/main.js",
"repository": "https://github.com/deadlyjack/acode-plugin.git",
"author": "Ajit <me@ajitkumar.dev>",
"license": "MIT",
"dependencies": {
"html-tag-js": "^1.1.36",
"sass.js": "^0.11.1",
"url-parse": "^1.5.10"
},
"devDependencies": {
"@babel/cli": "^7.20.7",
"@babel/core": "^7.20.12",
"@babel/preset-env": "^7.20.2",
"babel-loader": "^9.1.2",
"jszip": "^3.10.1",
"live-server": "^1.2.2",
"webpack": "^5.76.0",
"webpack-cli": "^5.0.1"
},
"scripts": {
"build": "webpack",
"build-release": "webpack --mode production",
"start-dev": "node .vscode/start-dev"
},
"browserslist": [
"> 0.25%, not dead"
],
"resolutions": {
"terser": ">=5.16.3 ",
"glob-parent": ">=5.1.2"
}
}