-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 1.46 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
50
51
52
53
54
55
56
{
"name": "tsccss",
"version": "1.0.0",
"description": "Import from [.scss] or [.less] to [.css] after typescript compilation.",
"main": "cjs/index.js",
"module": "lib/index.js",
"types": "lib/index.d.ts",
"bin": {
"tsccss": "cjs/index.js"
},
"files": [
"cjs",
"lib"
],
"scripts": {
"build:cjs": "tsc -p ./tsconfig.cjs.json",
"build:esm": "tsc -p ./tsconfig.esm.json",
"build": "yarn clear && yarn lint && yarn build:cjs && yarn build:esm",
"start": "yarn build && node cjs/index.js -h",
"clear": "rm -rf ./lib ./cjs",
"lint": "eslint -c .eslintrc.js --ext .ts,.tsx,.js src"
},
"repository": {
"type": "git",
"url": "https://github.com/vortesnail/tsccss.git"
},
"keywords": [
"typescript",
"tsc",
"scss css",
"less css"
],
"author": "vortesnail <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/vortesnail/tsccss/issues"
},
"homepage": "https://github.com/vortesnail/tsccss#readme",
"devDependencies": {
"@types/jscodeshift": "~0.11.0",
"@types/node": "~14.14.35",
"@typescript-eslint/eslint-plugin": "~4.18.0",
"@typescript-eslint/parser": "~4.18.0",
"eslint": "~7.22.0",
"eslint-config-airbnb-base": "~14.2.1",
"eslint-plugin-import": "~2.22.1",
"prettier": "~2.2.1",
"typescript": "~4.2.3"
},
"dependencies": {
"commander": "~7.1.0",
"globby": "~11.0.3",
"jscodeshift": "~0.11.0",
"slash": "^3.0.0"
}
}