styleframe 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,10 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <project version="4">
3
+ <component name="MaterialThemeProjectNewConfig">
4
+ <option name="metadata">
5
+ <MTProjectMetadataState>
6
+ <option name="userId" value="5fbaf10e:1978bfec20b:-7ffd" />
7
+ </MTProjectMetadataState>
8
+ </option>
9
+ </component>
10
+ </project>
@@ -0,0 +1,8 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <project version="4">
3
+ <component name="ProjectModuleManager">
4
+ <modules>
5
+ <module fileurl="file://$PROJECT_DIR$/.idea/styleframe.iml" filepath="$PROJECT_DIR$/.idea/styleframe.iml" />
6
+ </modules>
7
+ </component>
8
+ </project>
@@ -0,0 +1,12 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <module type="WEB_MODULE" version="4">
3
+ <component name="NewModuleRootManager">
4
+ <content url="file://$MODULE_DIR$">
5
+ <excludeFolder url="file://$MODULE_DIR$/.tmp" />
6
+ <excludeFolder url="file://$MODULE_DIR$/temp" />
7
+ <excludeFolder url="file://$MODULE_DIR$/tmp" />
8
+ </content>
9
+ <orderEntry type="inheritedJdk" />
10
+ <orderEntry type="sourceFolder" forTests="false" />
11
+ </component>
12
+ </module>
package/.idea/vcs.xml ADDED
@@ -0,0 +1,6 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <project version="4">
3
+ <component name="VcsDirectoryMappings">
4
+ <mapping directory="$PROJECT_DIR$" vcs="Git" />
5
+ </component>
6
+ </project>
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":""}
package/dist/index.js ADDED
@@ -0,0 +1,4 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ console.log('Happy developing using styleframe ✨');
4
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":";;AAAA,OAAO,CAAC,GAAG,CAAC,qCAAqC,CAAC,CAAA"}
package/package.json ADDED
@@ -0,0 +1,31 @@
1
+ {
2
+ "name": "styleframe",
3
+ "version": "0.0.1",
4
+ "description": "Write modern, clean, composable CSS using Typescript, with a focus on simplicity and performance.",
5
+ "author": "Alex Grozav <alex@styleframe.dev>",
6
+ "main": "dist/index.js",
7
+ "keywords": [
8
+ "styleframe",
9
+ "css"
10
+ ],
11
+ "homepage": "https://styleframe.dev",
12
+ "repository": {
13
+ "type": "git",
14
+ "url": "https://github.com/styleframe-dev/styleframe"
15
+ },
16
+ "bugs": {
17
+ "email": "support@styleframe.dev",
18
+ "url": "https://github.com/styleframe-dev/styleframe/issues"
19
+ },
20
+ "dependencies": {},
21
+ "devDependencies": {
22
+ "typescript": "^5.8.3"
23
+ },
24
+ "engines": {
25
+ "node": ">=7.6.0"
26
+ },
27
+ "license": "MIT",
28
+ "scripts": {
29
+ "build": "tsc"
30
+ }
31
+ }
package/src/index.ts ADDED
@@ -0,0 +1 @@
1
+ console.log('Happy developing using styleframe ✨')
package/tsconfig.json ADDED
@@ -0,0 +1,40 @@
1
+ {
2
+ "compilerOptions": {
3
+ // Base Options recommended for all projects
4
+ "esModuleInterop": true,
5
+ "skipLibCheck": true,
6
+ "target": "es2022",
7
+ "allowJs": true,
8
+ "resolveJsonModule": true,
9
+ "moduleDetection": "force",
10
+ "isolatedModules": true,
11
+ "verbatimModuleSyntax": true,
12
+ // Enable strict type checking so you can catch bugs early
13
+ "strict": true,
14
+ "noUncheckedIndexedAccess": true,
15
+ "noImplicitOverride": true,
16
+ // Transpile our TypeScript code to JavaScript
17
+ "module": "NodeNext",
18
+ "outDir": "dist",
19
+ // Emit type declarations
20
+ "declaration": true,
21
+ // Emit source maps and enable the composite option for monorepos
22
+ "composite": true,
23
+ "declarationMap": true,
24
+ "sourceMap": true,
25
+ // Include the DOM types
26
+ "lib": [
27
+ "es2022",
28
+ "dom",
29
+ "dom.iterable"
30
+ ]
31
+ },
32
+ // Include the necessary files for your project
33
+ "include": [
34
+ "src/**/*.ts",
35
+ "src/**/*.tsx"
36
+ ],
37
+ "exclude": [
38
+ "node_modules"
39
+ ]
40
+ }