-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.58 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
57
58
59
60
61
62
63
64
{
"name": "sassdoc-parser",
"version": "3.4.1",
"engines": {
"node": ">=20"
},
"description": "A lightweight parser for SassDoc.",
"keywords": [
"sassdoc",
"scss",
"sass"
],
"homepage": "https://github.com/wkillerud/sassdoc-parser#readme",
"repository": {
"type": "git",
"url": "https://github.com/wkillerud/sassdoc-parser.git"
},
"bugs": {
"url": "https://github.com/wkillerud/sassdoc-parser/issues"
},
"files": [
"dist",
"types"
],
"type": "module",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/types/index.d.ts",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"require": "./dist/cjs/index.js",
"import": "./dist/esm/index.js",
"default": "./dist/esm/index.js"
}
},
"scripts": {
"clean": "rm -rf dist",
"build": "npm run clean && npm run compile && ./postbuild.sh",
"compile": "tsc -b ./tsconfig.cjs.json ./tsconfig.esm.json ./tsconfig.types.json",
"dev": "tsc -w",
"lint": "eslint 'src/**/*.ts'",
"test": "vitest"
},
"author": "William Killerud <[email protected]> (https://www.williamkillerud.com/)",
"license": "MIT",
"devDependencies": {
"@semantic-release/git": "^10.0.1",
"@types/node": "^20.14.12",
"@typescript-eslint/eslint-plugin": "^7.17.0",
"@typescript-eslint/parser": "^7.17.0",
"eslint": "^8.15.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.0.1",
"prettier": "^3.3.3",
"semantic-release": "^24.0.0",
"semantic-release-publint": "^1.0.1",
"typescript": "^5.5.4",
"vitest": "^2.0.4"
},
"dependencies": {
"cdocparser": "0.15.0"
}
}