-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
100 lines (100 loc) · 2.64 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
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
{
"name": "berryjam",
"version": "0.1.0-alpha.64",
"description": "Berryjam helps you analyze and optimize your Vue.js component code with ease. Save time communicating and effort in development to create better, more efficient code.",
"private": false,
"exports": {
".": {
"import": {
"types": "./lib/esm/types/index.d.ts",
"default": "./lib/esm/index.mjs"
},
"require": {
"types": "./lib/cjs/types/index.d.ts",
"default": "./lib/cjs/index.js"
}
}
},
"types": "./lib/cjs/types/index.d.ts",
"main": "./lib/cjs/index.js",
"files": [
"lib/**/*"
],
"scripts": {
"clean": "del-cli ./lib",
"build": "pnpm clean && pnpm build:esm && pnpm build:cjs",
"build:esm": "tsc -p ./tsconfigs/tsconfig.esm.json && move-file lib/esm/index.js lib/esm/index.mjs",
"build:cjs": "tsc -p ./tsconfigs/tsconfig.cjs.json",
"prepack": "pnpm run build",
"test": "jest"
},
"repository": {
"type": "git",
"url": "https://github.com/logicspark/berryjam.git"
},
"keywords": [
"node",
"typescript",
"vue",
"analyzer",
"component",
"vue component",
"vue components",
"web component",
"component analytics",
"component scanner",
"vue component scanner",
"frontend",
"frontend tools"
],
"author": "logicspark co.,ltd",
"license": "MIT",
"bugs": {
"url": "https://github.com/logicspark/node-ts-npm-package/issues"
},
"homepage": "https://github.com/logicspark/node-ts-npm-package#readme",
"engines": {
"node": ">=18.16.1",
"npm": ">= 9.5.1",
"pnpm": ">=8.6.7",
"yarn": "PNPM is the preferred package manager for this project"
},
"devDependencies": {
"@babel/types": "^7.22.11",
"@types/babel__core": "^7.20.1",
"@types/cli-spinner": "^0.2.1",
"@types/jest": "^29.5.4",
"@types/lodash": "^4.14.197",
"@types/node": "^20.5.6",
"@types/shelljs": "^0.8.12",
"@typescript-eslint/eslint-plugin": "^6.5.0",
"@typescript-eslint/parser": "^6.5.0",
"del-cli": "^5.0.0",
"eslint": "^8.48.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"jest": "^29.6.3",
"move-file-cli": "^3.0.0",
"prettier": "3.0.3",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"dependencies": {
"@babel/core": "^7.22.11",
"@babel/generator": "^7.22.10",
"@babel/parser": "^7.22.11",
"@babel/plugin-transform-typescript": "^7.22.15",
"@babel/preset-typescript": "^7.22.15",
"@babel/traverse": "^7.22.11",
"@vue/babel-plugin-jsx": "^1.1.5",
"@vue/compiler-dom": "^3.3.4",
"@vue/compiler-sfc": "^3.3.4",
"app-root-path": "^3.1.0",
"child_process": "^1.0.2",
"glob": "^10.3.3",
"lodash": "^4.17.21",
"shelljs": "^0.8.5",
"tsconfig-paths": "^4.2.0"
}
}