-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.1 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
{
"name": "@sbb-esta/pictograms",
"version": "0.1.0",
"description": "Pictogram package for the SBB organization",
"repository": "https://github.com/sbb-design-systems/sbb-pictograms.git",
"author": "ESTA",
"license": "Apache-2.0",
"keywords": [
"pictograms",
"picto",
"svg",
"sbb"
],
"scripts": {
"extract": "tsx scripts/extract-pictograms.ts",
"prepack": "tsx scripts/build-exports.ts"
},
"main": "./picto/index.cjs",
"module": "./picto/index.mjs",
"es2015": "./picto/index.mjs",
"es2017": "./picto/index.mjs",
"typings": "./picto/index.d.ts",
"devDependencies": {
"@types/node": "20.14.2",
"commit-and-tag-version": "12.4.1",
"figma-js": "1.15.0",
"octokit": "2.0.3",
"svgo": "3.3.2",
"tsx": "4.15.6",
"typescript": "5.4.5"
},
"files": [
"picto"
],
"publishConfig": {
"access": "public"
},
"type": "module",
"standard-version": {
"bumpFiles": [
{
"filename": "package.json",
"type": "json"
},
{
"filename": "picto/index.json",
"type": "json"
}
]
}
}