-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.27 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
{
"name": "pretty-markup",
"version": "1.0.12",
"description": "Imagine crafting elegant, semantic HTML structures without the clutter of angle brackets. Pretty Markup, a revolutionary preprocessor like Sass for CSS or TypeScript for JavaScript, Pretty Markup takes HTML to the next level.",
"main": "./src/index.js",
"bin": {
"pm": "./src/Main.js"
},
"scripts": {
"dev": "prettier --config .prettierrc ./src --write && tsc && node ./src/config/dev.js",
"build": "prettier --config .prettierrc ./src --write && tsc && node ./src/config/build.js && npm run lint",
"lint": "npx eslint ./src --fix"
},
"author": "Matheus Pires",
"license": "MIT",
"keywords": [
"frontend",
"css",
"html",
"sass",
"preprocessor",
"style",
"clean code",
"design",
"html5",
"frontend development",
"scss"
],
"repository": "https://github.com/mopires/pretty-markup",
"devDependencies": {
"@eslint/js": "^9.7.0",
"@types/node": "^20.2.5",
"@types/pretty": "^2.0.3",
"chalk": "^4.1.0",
"eslint": "^9.7.0",
"globals": "^15.8.0",
"pretty": "^2.0.0",
"typescript": "^5.0.4",
"typescript-eslint": "^7.16.1"
},
"dependencies": {
"chalk": "^4.1.0",
"prettier": "^3.2.5",
"pretty": "^2.0.0"
}
}