-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 2 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
65
66
{
"name": "@dldc/jsx-linear-parser",
"version": "1.0.8",
"description": "A linear JSX parser",
"keywords": [],
"homepage": "https://github.com/dldc-packages/jsx-linear-parser#readme",
"bugs": {
"url": "https://github.com/dldc-packages/jsx-linear-parser/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dldc-packages/jsx-linear-parser.git"
},
"license": "MIT",
"author": "Etienne Dldc <e.deladonchamps@gmail.com>",
"sideEffects": false,
"type": "module",
"exports": {
".": {
"types": "./dist/mod.d.ts",
"import": "./dist/mod.js",
"require": "./dist/mod.cjs"
}
},
"main": "./dist/mod.js",
"types": "./dist/mod.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "rimraf dist && tsup --format cjs,esm src/mod.ts --dts",
"build:watch": "tsup --watch --format cjs,esm src/mod.ts --dts",
"changelog": "auto-changelog --stdout --hide-credit true --commit-limit false -u --template https://raw.githubusercontent.com/release-it/release-it/main/templates/changelog-compact.hbs",
"lint": "prettier . --check && eslint . && tsc --noEmit",
"lint:fix": "prettier . --write . && eslint . --fix",
"release": "release-it --only-version",
"test": "pnpm run lint && vitest run --coverage",
"test:run": "vitest run",
"test:watch": "vitest --watch",
"test:watch:coverage": "vitest --watch --coverage",
"typecheck": "tsc",
"typecheck:watch": "tsc --watch"
},
"dependencies": {
"@dldc/literal-parser": "^3.1.6"
},
"devDependencies": {
"@eslint/js": "^9.2.0",
"@types/node": "^20.12.8",
"@vitest/coverage-v8": "^1.6.0",
"auto-changelog": "^2.4.0",
"eslint": "^8.57.0",
"prettier": "^3.2.5",
"release-it": "^17.2.1",
"rimraf": "^5.0.5",
"tsup": "^8.0.2",
"typescript": "^5.4.5",
"typescript-eslint": "^7.8.0",
"vitest": "^1.6.0"
},
"packageManager": "pnpm@9.0.6",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
}
}