-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.62 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.62 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
{
"name": "@samland-gov/frontend",
"version": "1.0.4",
"description": "Samland Government Frontend library, a fork of GOV.UK Frontend, providing reusable components and styles for building Samland Government websites.",
"scripts": {
"build": "npm run build:js && npm run build:css && npm run build:types",
"build:js": "babel src --out-dir dist --extensions \".ts,.tsx\" --source-maps inline --ignore \"**/*.d.ts\"",
"build:css": "sass src/styles/index.scss dist/index.css",
"build:types": "tsc --emitDeclarationOnly",
"clean": "node -e \"fs.rmSync('dist', { recursive: true, force: true });\"",
"prepare": "npm run build"
},
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"style": "dist/index.css",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Samland-Gov/frontend.git"
},
"keywords": [
"Samland",
"Government",
"Frontend",
"GOV.UK",
"scss",
"Astro"
],
"author": "Samland Government",
"license": "MIT",
"bugs": {
"url": "https://github.com/Samland-Gov/frontend/issues"
},
"homepage": "https://github.com/Samland-Gov/frontend#readme",
"dependencies": {
"@x-govuk/govuk-prototype-components": "^4.0.0",
"govuk-frontend": "^5.10.1",
"markdown-it": "^14.1.0",
"markdown-it-govuk": "^0.5.0",
"tslib": "^2.8.1"
},
"devDependencies": {
"@babel/cli": "^7.27.2",
"@babel/core": "^7.27.1",
"@babel/preset-env": "^7.27.2",
"@babel/preset-typescript": "^7.27.1",
"@types/markdown-it": "^14.1.2",
"sass": "^1.89.0",
"typescript": "^5.8.3"
}
}