-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
113 lines (113 loc) · 3.05 KB
/
package.json
File metadata and controls
113 lines (113 loc) · 3.05 KB
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"author": "codeauthor1 <codeauthor2000@gmail.com> (https://www.twitter.com/codeathor1)",
"name": "sassify-pro",
"version": "1.0.5",
"description": "SassifyPro is a powerful Sass compiler designed to revolutionize your web development workflow.",
"main": "dist/index.mjs",
"types": "dist/types/index.d.ts",
"type": "module",
"exports": {
".": {
"types": "./dist/types/*.d.ts",
"require": "./dist/index.cjs",
"import": "./dist/index.mjs",
"default": "./dist/index.mjs"
},
"./package.json": "./package.json",
"./dist/index.cjs": "./dist/index.cjs",
"./dist/index.mjs": "./dist/index.mjs"
},
"bin": {
"sassify-pro": "dist/index.cjs"
},
"scripts": {
"prepare": "husky install",
"build:clean": "rimraf dist",
"build:rollup": "rollup -c rollup.config.js",
"compile:types": "tsc --project tsconfig.json",
"compile": "npm run lint && npm run build:rollup && npm run compile:types",
"build": "npm run build:clean && npm run compile",
"lint": "eslint lib --ext .js,.ts",
"lint:fix": "eslint --fix lib --ext .js,.ts",
"format": "prettier --write \"lib/**/*.{js,ts}\"",
"precommit": "lint-staged",
"dev": "npm run compile && npx yalc publish",
"typedoc": "rimraf ./docs && typedoc",
"release": "npm run build && publish.js",
"test": "jest"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint"
],
"*.js": "eslint --cache --fix"
},
"dependencies": {
"autoprefixer": "^10.4.14",
"browser-sync": "^2.29.3",
"chokidar": "^3.5.3",
"colorette": "^2.0.20",
"figlet": "^1.6.0",
"glob": "^10.3.3",
"nanospinner": "^1.1.0",
"postcss": "^8.4.27",
"sass": "^1.63.6",
"semver": "^7.5.4",
"websocket": "^1.0.34"
},
"devDependencies": {
"@types/browser-sync": "^2.27.0",
"@types/figlet": "^1.5.6",
"@types/glob": "^8.1.0",
"@types/node": "^20.3.1",
"@typescript-eslint/eslint-plugin": "^5.60.0",
"@typescript-eslint/parser": "^5.60.0",
"eslint": "^8.43.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"inquirer": "^9.2.8",
"jest": "^29.5.0",
"lint-staged": "^13.2.2",
"postcss-cli": "^10.1.0",
"prettier": "^2.8.8",
"rollup-plugin-preserve-shebang": "^1.0.1",
"rollup-plugin-typescript2": "^0.35.0",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Codeauthor1/sassify-pro.git"
},
"keywords": [
"sass",
"scss",
"sassify",
"sassifypro",
"css",
"sassycss",
"libsass",
"compile",
"style",
"preprocess",
"sass-compiler",
"autoprefixer",
"codeauthor1"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/Codeauthor1/sassify-pro/issues"
},
"homepage": "https://github.com/Codeauthor1/sassify-pro#readme",
"directories": {
"test": "test"
}
}