-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
45 lines (45 loc) · 1.24 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
{
"name": "@k4a_l/dirtreeist",
"version": "0.3.1",
"main": "dist/index.js",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./": "./"
},
"types": "dist/index.d.ts",
"author": "kasahala",
"license": "MIT",
"type": "module",
"scripts": {
"dev": "vite",
"clean": "rm -rf ./dist/ ",
"build:esm": "tsc -p tsconfig.build.json && tsc-alias -p tsconfig.build.json",
"build:cjs": "rollup -c rollup.config.js",
"build": "yarn clean && yarn build:esm && yarn build:cjs",
"test": "vitest",
"coverage": "vitest run --coverage",
"deploy": "yarn build && yarn publish --access=public"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^22.0.2",
"@rollup/plugin-node-resolve": "^14.0.1",
"@rollup/plugin-typescript": "^8.5.0",
"@typescript-eslint/eslint-plugin": "^5.36.2",
"@typescript-eslint/parser": "^5.36.2",
"eslint": "^8.23.0",
"eslint-config-prettier": "^8.5.0",
"prettier": "^2.7.1",
"rollup": "^2.79.0",
"tsc-alias": "^1.7.0",
"typescript": "^4.8.2",
"vite-tsconfig-paths": "^3.5.0",
"vitest": "^0.23.1"
},
"dependencies": {
"mdast-util-from-markdown": "^1.2.0",
"ts-dedent": "^2.2.0"
}
}