-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.5 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.5 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
{
"name": "pattern-languages",
"version": "1.0.0",
"description": "Each pattern is a rule which describes what you have to do to generate the entity which it defines. It is a three-part rule, which expresses a relation between a certain context, a problem, and a solution.",
"type": "module",
"author": "Nick Trombley <trombley.nick@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Aias/pattern-languages"
},
"bugs": {
"url": "https://github.com/Aias/pattern-languages/issues"
},
"keywords": [
"architecture",
"astro",
"christopher alexander",
"pattern language",
"patterns",
"urban planning"
],
"packageManager": "pnpm@10.28.1",
"scripts": {
"build": "astro check && astro build",
"check": "astro check && tsc --noEmit",
"dev": "astro dev",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,astro,json,md}\"",
"lint": "eslint src",
"preview": "astro preview"
},
"dependencies": {
"@astrojs/react": "4.4.2",
"astro": "^5.17.3",
"react": "^19.2.4",
"react-dom": "^19.2.4"
},
"devDependencies": {
"@astrojs/check": "0.9.6",
"@eslint/js": "^10.0.1",
"@types/node": "^25.3.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"eslint": "^10.0.1",
"globals": "^17.3.0",
"jiti": "^2.6.1",
"prettier": "^3.8.1",
"prettier-plugin-astro": "^0.14.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.0"
}
}