-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.72 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.72 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
{
"name": "@rdlabo/ionic-theme-md3",
"version": "1.1.0",
"description": "Material Design 3 Theme for Ionic Framework",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./dist/css/*": "./dist/css/*",
"./src/styles/*": "./src/styles/*"
},
"files": [
"dist",
"src",
"package.json"
],
"scripts": {
"build": "npm run build:css && npm run build:ts",
"build:css": "rm -rf dist/css && sass src/styles:dist/css --style=compressed --no-source-map",
"build:ts": "tsc",
"build:demo": "npm run build && cd demo && npm install && npm run build -- --configuration=production",
"lint": "prettier --check \"./**/*.{scss,ts}\" && prettier --parser angular --check \"./**/*.html\"",
"fmt": "prettier --write \"./**/*.{scss,ts}\" && prettier --parser angular --write \"./**/*.html\"",
"release": "np --no-tests --no-publish",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/rdlabo-team/ionic-theme-md3.git"
},
"keywords": [
"ionic",
"framework",
"theme",
"css",
"md3"
],
"author": "Masahiko Sakakibara <sakakibara@rdlabo.jp>",
"license": "MIT",
"bugs": {
"url": "https://github.com/rdlabo-team/ionic-theme-md3/issues"
},
"homepage": "https://github.com/rdlabo-team/ionic-theme-md3#readme",
"devDependencies": {
"@ionic/angular": "^8.8.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.1",
"np": "^10.2.0",
"prettier": "^3.6.2",
"sass": "^1.93.2",
"typescript": "^5.9.3"
},
"peerDependencies": {
"@ionic/core": ">= 8.8.0"
}
}