Skip to content

Commit 708af1d

Browse files
committed
feat: init
0 parents  commit 708af1d

16 files changed

+2537
-0
lines changed

.eslintrc.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"root": true,
3+
"extends": ["@sxzz/eslint-config-ts", "@sxzz/eslint-config-prettier"]
4+
}

.gitignore

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
2+
3+
# dependencies
4+
/node_modules
5+
6+
# misc
7+
.DS_Store

.prettierrc

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"semi": false,
3+
"singleQuote": true
4+
}

.vscode/settings.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"editor.formatOnSave": true
3+
}

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# OpenJike Changelog
2+
3+
## [Initial Version] - 2022-05-22

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# OpenJike Raycast Extension

assets/command-icon.png

123 KB
Loading

package.json

Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
{
2+
"$schema": "https://www.raycast.com/schemas/extension.json",
3+
"name": "openjike",
4+
"title": "OpenJike",
5+
"description": "",
6+
"icon": "command-icon.png",
7+
"license": "MIT",
8+
"author": "sxzz",
9+
"categories": [
10+
"Applications",
11+
"Web",
12+
"Communication"
13+
],
14+
"commands": [
15+
{
16+
"name": "login",
17+
"title": "Login Jike",
18+
"description": "Login Jike as a new user",
19+
"mode": "view"
20+
},
21+
{
22+
"name": "post",
23+
"title": "Post",
24+
"description": "Create a new post",
25+
"mode": "view"
26+
}
27+
],
28+
"scripts": {
29+
"build": "ray build -e dist",
30+
"dev": "ray develop",
31+
"fix-lint": "ray lint --fix",
32+
"lint": "ray lint"
33+
},
34+
"peerDependencies": {
35+
"react": "^17.0.0",
36+
"react-dom": "^17.0.0"
37+
},
38+
"dependencies": {
39+
"@raycast/api": "^1.35.1",
40+
"jike-sdk": "^0.19.0"
41+
},
42+
"devDependencies": {
43+
"@sxzz/eslint-config-prettier": "^2.2.1",
44+
"@sxzz/eslint-config-ts": "^2.2.1",
45+
"@types/node": "*",
46+
"@types/react": "^17.0.45",
47+
"eslint": "^8.16.0",
48+
"react": "^17.0.2",
49+
"react-dom": "^17.0.2",
50+
"react-reconciler": "0.26.2",
51+
"typescript": "^4.6.4"
52+
}
53+
}

0 commit comments

Comments
 (0)