-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 2.81 KB
/
package.json
File metadata and controls
103 lines (103 loc) · 2.81 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "icon.gl",
"description": "icon.gl is a icon library and framework developed by Scape Agency.",
"version": "0.0.36",
"config": {
"version_short": "0.0"
},
"keywords": [
"icon.gl",
"stylescape",
"icon",
"icons",
"icon-library",
"font",
"sprite",
"svg",
"sass",
"scss",
"woff",
"woff2",
"responsive",
"front-end",
"framework",
"web"
],
"homepage": "https://www.icon.gl/",
"author": "Lars van Vianen",
"contributors": [
"Scape Agency"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/scape-agency/icon.gl.git"
},
"bugs": {
"url": "https://github.com/scape-agency/icon.gl/issues"
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/scape-foundation"
}
],
"type": "module",
"main": "./dist/js/index.cjs",
"module": "./dist/js/index.mjs",
"types": "./dist/js/index.d.ts",
"sass": "src/scss/index.scss",
"style": "dist/css/icon.gl.css",
"scripts": {
"build": "npx kist --config ./kist.yml && npm run build:ts",
"build:ts": "tsup",
"watch": "npx kist --config ./kist.yml --live",
"dev": "vite",
"test": "vitest run",
"test:watch": "vitest watch",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"format": "npx prettier --write .",
"lint": "eslint 'src/**/*.ts' || true"
},
"dependencies": {
"@getkist/action-nunjucks": "^2.0.9",
"@getkist/action-sass": "^1.0.4",
"tslib": "^2.8.1",
"vite": "^7.3.1"
},
"devDependencies": {
"@babel/core": "^7.23.6",
"@babel/preset-env": "^7.23.6",
"@babel/preset-typescript": "^7.23.3",
"@getkist/action-svg": "^1.0.4",
"@getkist/action-terser": "^1.0.2",
"@testing-library/dom": "^10.4.1",
"@types/node": "^25.0.10",
"@vitest/coverage-v8": "^4.0.16",
"@vitest/ui": "^4.0.16",
"happy-dom": "^20.0.11",
"jsdom": "^28.0.0",
"kist": "^0.1.60",
"sass": "^1.97.3",
"ts-node": "^10.9.1",
"tsup": "^8.5.1",
"typescript": "^5.3.3",
"vitest": "^4.0.16"
},
"files": [
"src/**",
"dist/**"
],
"exports": {
".": {
"sass": "./src/scss/index.scss",
"types": "./dist/js/index.d.ts",
"import": "./dist/js/index.mjs",
"require": "./dist/js/index.cjs"
},
"./scss": "./dist/scss/index.scss",
"./css/icon.gl.css": "./dist/css/icon.gl.css",
"./css/icon.gl.min.css": "./dist/css/icon.gl.min.css"
}
}