-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.39 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
{
"name": "cli-css-vscode-snippet",
"version": "0.0.8",
"description": "CDN extension for the vite plugin",
"main": "dist/index.js",
"exports": {
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"types": "dist/index.d.ts",
"keywords": [
"vscode snippet",
"css var snippet"
],
"bin": {
"cli-css-vscode-snippet": "./bin/index.js"
},
"files": [
"dist",
"bin"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mmf-fe/cli-css-vscode-snippet.git"
},
"scripts": {
"dev": "npm run build -- --watch",
"build": "tsup src/index.ts --dts --format cjs,esm",
"test": "node ./bin/index.js create --type css-var -s ./test/var.css -t ./.vscode/css-var.code-snippets",
"prepublishOnly": "yarn build"
},
"author": "vfasky<[email protected]>",
"license": "MIT",
"devDependencies": {
"@types/node": "^15.3.0",
"tsup": "^4.10.1",
"typescript": "^4.2.4"
},
"dependencies": {
"@types/fs-extra": "^9.0.11",
"@types/sass": "^1.16.0",
"@types/yargs": "^16.0.1",
"chalk": "^4.1.1",
"fs-extra": "^10.0.0",
"sass": "^1.32.13",
"yargs": "^17.5.1"
}
}