-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
executable file
·49 lines (49 loc) · 1.16 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
{
"name": "inline-sass",
"version": "1.2.0",
"description": "",
"type": "module",
"main": "dist/index.mjs",
"types": "dist/index.d.ts",
"author": {
"name": "Seth Battis",
"email": "[email protected]"
},
"license": "GPL-3.0",
"engines": {
"node": ">=12.17"
},
"scripts": {
"build": "run-s build:*",
"build:clean": "shx rm -rf dist",
"build:transpile": "tsc",
"build:transform": "./bin/transform-node-to-esm-imports.cjs",
"release": "run-s release:*",
"release:build": "npm run build",
"release:publish": "np --yolo --omit=dev"
},
"dependencies": {
"inline-css": "^3.0.0",
"node-html-parser": "^5.4.2",
"sass": "^1.62.0"
},
"devDependencies": {
"@battis/eslint-config": "latest",
"@battis/prettier-config": "latest",
"@types/inline-css": "^3.0.1",
"@types/node": "^20.4.1",
"jackspeak": "^2.2.1",
"np": "^8.0.4",
"npm-run-all": "^4.1.5",
"shelljs": "^0.8.5",
"shx": "^0.3.4",
"typescript": "^5.1.6"
},
"prettier": "@battis/prettier-config",
"eslintConfig": {
"extends": "@battis/eslint-config",
"parserOptions": {
"sourceType": "module"
}
}
}