-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.02 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.02 KB
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
{
"name": "@captive/plop-config",
"version": "1.0.0-alpha.33",
"description": "Plop generators",
"keywords": [
"plop",
"plopjs",
"vue"
],
"homepage": "https://github.com/Captive-Studio/es-project-config/blob/master/packages/plop-config#readme",
"bugs": {
"url": "https://github.com/Captive-Studio/es-project-config.git/issues"
},
"repository": {
"type": "git",
"url": "git@github.com:Captive-Studio/es-project-config.git",
"directory": "packages/plop-config"
},
"license": "MIT",
"author": "Julien Polo <julien.polo@captive.fr>",
"type": "module",
"exports": {
".": "./dist/index.js",
"./dist/*": "./dist/*"
},
"typings": "./dist/index.d.ts",
"files": [
"dist/",
"src/",
"index.*",
"index.d.ts",
"!**/*.spec.*",
"!**/__tests__/**",
"**/*.template.*"
],
"scripts": {
"build": "npx run-p \"build:*\"",
"build:tsc": "tsc -b tsconfig.build.json",
"clean": "npx run-p \"clean:*\"",
"clean:tsc": "rm -rf dist",
"docs": "node ../../markdown.mjs",
"format": "npx run-p \"format:*\"",
"format:src": "eslint . --fix --ext=mjs,cjs,js,jsx,ts,tsx,json,jsonc,json5,yml,yaml",
"lint": "npx run-p \"lint:*\"",
"lint:src": "eslint . --ext=mjs,cjs,js,jsx,ts,tsx,json,jsonc,json5,yml,yaml",
"prepare": "npx run-p \"prepare:*\"",
"prepare:empty": ":",
"prepublishOnly": "npm run clean; npm run build",
"spellcheck": "cspell --no-progress '**'",
"test": "npx run-p \"test:*\"",
"test:src": "vitest run"
},
"eslintConfig": {
"parserOptions": {
"project": "./tsconfig.json"
}
},
"dependencies": {
"@sindresorhus/slugify": "2.2.1"
},
"devDependencies": {
"@types/node": "22.13.17",
"plop": "4.0.4",
"vite": "latest",
"vitest": "latest"
},
"peerDependencies": {
"plop": "4.x"
},
"peerDependenciesMeta": {
"plop": {
"optional": true
}
},
"engines": {
"node": ">=18.0.0"
},
"publishConfig": {
"access": "public"
},
"sideEffect": false
}