Skip to content

Commit a8d1858

Browse files
authored
feat: Scaffold of Chrome Extension (#70)
1 parent cc637c2 commit a8d1858

File tree

13 files changed

+174
-0
lines changed

13 files changed

+174
-0
lines changed

typescript/package-lock.json

Lines changed: 51 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
public/js
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
<html>
2+
3+
<body>
4+
<h1>Hello Verifier</h1>
5+
</body>
6+
7+
</html>
Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
{
2+
"name": "@commontools/common-verifier",
3+
"author": "The Common Authors",
4+
"version": "0.0.1",
5+
"description": "",
6+
"license": "UNLICENSED",
7+
"private": true,
8+
"type": "module",
9+
"scripts": {
10+
"build": "wireit",
11+
"clean": "wireit"
12+
},
13+
"repository": {
14+
"type": "git",
15+
"url": "git+https://github.com/commontoolsinc/labs.git"
16+
},
17+
"bugs": {
18+
"url": "https://github.com/commontoolsinc/labs/issues"
19+
},
20+
"homepage": "https://github.com/commontoolsinc/labs#readme",
21+
"devDependencies": {
22+
"@shoelace-style/shoelace": "^2.15.1",
23+
"typescript": "^5.2.2",
24+
"vite": "^5.2.0",
25+
"wireit": "^0.14.4"
26+
},
27+
"wireit": {
28+
"build:tsc": {
29+
"command": "tsc --build -f",
30+
"files": [
31+
"./src/**/*"
32+
],
33+
"output": [
34+
"./public/js/**/*"
35+
]
36+
},
37+
"build": {
38+
"dependencies": [
39+
"build:tsc"
40+
],
41+
"command": "vite build"
42+
},
43+
"clean": {
44+
"dependencies": [],
45+
"command": "rm -rf ./lib ./dist ./.wireit ./node_modules"
46+
}
47+
},
48+
"dependencies": {
49+
"@types/chrome": "^0.0.268",
50+
"@types/serviceworker": "^0.0.87"
51+
}
52+
}
14.6 KB
Loading
50.3 KB
Loading
30.3 KB
Loading
101 KB
Loading
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
"manifest_version": 3,
3+
"name": "Common Verifier",
4+
"description": "Identify origins that meet Common standards for verifiable privacy",
5+
"version": "1.0",
6+
"action": {
7+
"default_popup": "index.html",
8+
"default_icon": "icon-unverified-128.png"
9+
},
10+
"permissions": [
11+
"activeTab",
12+
"tabs",
13+
"browserAction"
14+
],
15+
"background": {
16+
"service_worker": "./js/service-worker.js",
17+
"type": "module"
18+
}
19+
}

typescript/packages/common-verifier/src/index.ts

Whitespace-only changes.

0 commit comments

Comments
 (0)