-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
67 lines (67 loc) · 1.79 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "trunx",
"version": "1.1.0",
"description": "Super Saiyan React components, son of awesome Bulma",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./classnames": {
"import": "./dist/classnames.js",
"types": "./dist/classnames.d.ts"
}
},
"scripts": {
"build": "tsc --project ./tsconfig.build.json --removeComments && tsc --project ./tsconfig.build.json --declaration --emitDeclarationOnly",
"generate_bulma_types": "postcss ./node_modules/bulma/css/bulma.css --config ./generate_bulma_types --output ./node_modules/bulma/css/output.css",
"minify": "node minify.js",
"postbuild": "npm run minify",
"pretest": "npm run build",
"prettier": "prettier --write .",
"prettier--check": "prettier --check .",
"test": "node --test --no-warnings=ExperimentalWarning --experimental-strip-types src/classnames_test.ts src/package_test.ts",
"tsc": "tsc --project ./tsconfig.json --noEmit"
},
"devDependencies": {
"@types/node": "^22",
"@types/react": "^18",
"bulma": "^1",
"postcss": "^8",
"postcss-cli": "^11",
"postcss-ts-classnames": "^0.3.0",
"pre-commit": "^1",
"prettier": "^3",
"react": "^18",
"read-file-utf8": "^3.0.0",
"typescript": "^5"
},
"keywords": [
"bulma",
"react",
"typescript"
],
"author": {
"name": "Gianluca Casati",
"url": "https://fibo.github.io"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/fibo/trunx.git"
},
"bugs": {
"url": "https://github.com/fibo/trunx/issues"
},
"prettier": {
"semi": false
},
"pre-commit": [
"tsc",
"test",
"prettier--check"
]
}